From 06c29862808e655d26a07a0cc1743b4ef085e2a5 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 20 Jul 2014 12:17:55 -0700 Subject: [PATCH] Don't duplicate build files Turns out keeping files in place, instead of symlinking or hard linking into build/ means that Xcode can actually break on files in src/. This is cool! There's still a problem with Xcode not getting appropriate type information though. --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 918fc56..ef0d09f 100644 --- a/SConstruct +++ b/SConstruct @@ -149,7 +149,8 @@ def do_sconscript(env, build_env, src_dir, out_dir): # build_env is the Environment we're using to put everything together. env.SConscript(sconscript, {'env': build_env, 'build_env': env}, - variant_dir=out_dir) + variant_dir=out_dir, + duplicate=0) debug_env = create_env('debug', {