disable caching for targets using helper functions

This commit is contained in:
Rhody Lugo
2017-11-28 16:27:57 -04:00
parent 24baf79c5e
commit a65c0939fd
24 changed files with 45 additions and 50 deletions

View File

@ -25,8 +25,7 @@ f.write(unreg_apis)
f.close()
platform_sources.append('register_platform_apis.gen.cpp')
lib = env.Library('platform', platform_sources)
env.NoCache(lib)
lib = env.add_library('platform', platform_sources)
env.Prepend(LIBS=lib)
Export('env')