diff options
author | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-27 09:39:05 -0400 |
---|---|---|
committer | Rhody Lugo <rhodylugo@gmail.com> | 2017-11-28 03:23:33 -0400 |
commit | a4a222d62dcffaf93e3dd439c3f61836a4cd831e (patch) | |
tree | 72f06c4b4a0aaa17aa9108bc12f20d057b671151 /platform/SCsub | |
parent | a26b36bec2e99a128b7a61ff9fa1e2e46148f547 (diff) |
use the same cache for all branches for appveyor
Diffstat (limited to 'platform/SCsub')
-rw-r--r-- | platform/SCsub | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/SCsub b/platform/SCsub index 4ef23ab053..a362371f93 100644 --- a/platform/SCsub +++ b/platform/SCsub @@ -25,6 +25,8 @@ f.write(unreg_apis) f.close() platform_sources.append('register_platform_apis.gen.cpp') -env.Prepend(LIBS=env.Library('platform', platform_sources)) +lib = env.Library('platform', platform_sources) +env.NoCache(lib) +env.Prepend(LIBS=lib) Export('env') |