summaryrefslogtreecommitdiff
path: root/platform/windows
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2017-11-28 09:17:05 +0100
committerGitHub <noreply@github.com>2017-11-28 09:17:05 +0100
commit95e7656a152f6158b50ff15f232097ff2175d170 (patch)
tree72f06c4b4a0aaa17aa9108bc12f20d057b671151 /platform/windows
parenta26b36bec2e99a128b7a61ff9fa1e2e46148f547 (diff)
parenta4a222d62dcffaf93e3dd439c3f61836a4cd831e (diff)
Merge pull request #13359 from rraallvv/cache_pruning
Fixes for SCons shared cache for Travis-CI and AppVeyor-CI (master)
Diffstat (limited to 'platform/windows')
-rw-r--r--platform/windows/SCsub5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/windows/SCsub b/platform/windows/SCsub
index aa9eb3e69b..2fdb801c2e 100644
--- a/platform/windows/SCsub
+++ b/platform/windows/SCsub
@@ -28,7 +28,8 @@ obj = env.RES(restarget, 'godot_res.rc')
common_win.append(obj)
-binary = env.Program('#bin/godot', ['godot_win.cpp'] + common_win, PROGSUFFIX=env["PROGSUFFIX"])
+prog = env.Program('#bin/godot', ['godot_win.cpp'] + common_win, PROGSUFFIX=env["PROGSUFFIX"])
+env.NoCache(prog)
# Microsoft Visual Studio Project Generation
if env['vsproj']:
@@ -38,4 +39,4 @@ if env['vsproj']:
if not os.getenv("VCINSTALLDIR"):
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
- env.AddPostAction(binary, make_debug_mingw)
+ env.AddPostAction(prog, make_debug_mingw)