diff options
author | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-28 16:27:57 -0400 |
---|---|---|
committer | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-28 23:24:12 -0400 |
commit | a65c0939fd1adc616275ad01996917fab89a7b9c (patch) | |
tree | 60fb5469a28c4ec482b8d3b9cad183daa1b654d1 /platform/osx/SCsub | |
parent | 24baf79c5e30b75f8370c24239a00085d7ad803f (diff) |
disable caching for targets using helper functions
Diffstat (limited to 'platform/osx/SCsub')
-rw-r--r-- | platform/osx/SCsub | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/osx/SCsub b/platform/osx/SCsub index 16223654cc..cb88bc470a 100644 --- a/platform/osx/SCsub +++ b/platform/osx/SCsub @@ -16,8 +16,7 @@ files = [ 'power_osx.cpp', ] -prog = env.Program('#bin/godot', files) -env.NoCache(prog) +prog = env.add_program('#bin/godot', files) if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes": env.AddPostAction(prog, make_debug) |