use the same cache for all branches for appveyor

This commit is contained in:
Rhody Lugo
2017-11-27 09:39:05 -04:00
parent a26b36bec2
commit a4a222d62d
24 changed files with 106 additions and 56 deletions

View File

@ -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')