diff options
Diffstat (limited to 'modules/gdnative/nativescript/SCsub')
| -rw-r--r-- | modules/gdnative/nativescript/SCsub | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/gdnative/nativescript/SCsub b/modules/gdnative/nativescript/SCsub index ee3b9c351d..5841ad5531 100644 --- a/modules/gdnative/nativescript/SCsub +++ b/modules/gdnative/nativescript/SCsub @@ -1,12 +1,10 @@  #!/usr/bin/env python  Import('env') +Import('env_gdnative') -mod_env = env.Clone() -mod_env.add_source_files(env.modules_sources, "*.cpp") -mod_env.Append(CPPFLAGS=['-DGDAPI_BUILT_IN']) +env_gdnative.add_source_files(env.modules_sources, '*.cpp') +env_gdnative.Append(CPPFLAGS=['-DGDAPI_BUILT_IN'])  if "platform" in env and env["platform"] in ["x11", "iphone"]:      env.Append(LINKFLAGS=["-rdynamic"]) - -Export('mod_env')  |