diff options
author | Rhody Lugo <rhodylugo@gmail.com> | 2018-06-21 00:33:25 -0400 |
---|---|---|
committer | Rhody Lugo <rhodylugo@gmail.com> | 2018-06-21 03:00:33 -0400 |
commit | 920224a535f7858dd4bf39f04e3c90c8276503c3 (patch) | |
tree | d1f1a52a960146cbd8de2076819fa09e45f7bdba /modules/gdnative | |
parent | a9acdd84b7a6fd074f21d500a64976326f6cbb67 (diff) |
add NoCache wrapper to Command
Diffstat (limited to 'modules/gdnative')
-rw-r--r-- | modules/gdnative/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/SCsub b/modules/gdnative/SCsub index 92fb41adf8..a3434995aa 100644 --- a/modules/gdnative/SCsub +++ b/modules/gdnative/SCsub @@ -196,7 +196,7 @@ def build_gdnative_api_struct(target, source, env): with open(source.path, 'w') as fd: fd.write(_build_gdnative_api_struct_source(api)) -_, gensource = gdn_env.Command(['include/gdnative_api_struct.gen.h', 'gdnative_api_struct.gen.cpp'], +_, gensource = gdn_env.CommandNoCache(['include/gdnative_api_struct.gen.h', 'gdnative_api_struct.gen.cpp'], 'gdnative_api.json', build_gdnative_api_struct) gdn_env.add_source_files(env.modules_sources, [gensource]) @@ -277,7 +277,7 @@ def build_gdnative_wrapper_code(target, source, env): if ARGUMENTS.get('gdnative_wrapper', False): #build wrapper code - gensource, = gdn_env.Command('gdnative_wrapper_code.gen.cpp', 'gdnative_api.json', build_gdnative_wrapper_code) + gensource, = gdn_env.CommandNoCache('gdnative_wrapper_code.gen.cpp', 'gdnative_api.json', build_gdnative_wrapper_code) gd_wrapper_env = env.Clone() gd_wrapper_env.Append(CPPPATH=['#modules/gdnative/include/']) |