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.
This commit is contained in:
parent
6ed121a039
commit
06c2986280
1 changed files with 2 additions and 1 deletions
|
@ -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', {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue