diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-10-17 13:08:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-17 13:08:41 +0200 |
commit | 8c50bc369e7f9f2b849eb77146f50dcc96389053 (patch) | |
tree | 45a250da55e13614cc0044cf85e9d17d70414c8c /modules/gdnative/SCsub | |
parent | fe562cc11344d3dd81c0d20386aef9c1431f0db2 (diff) | |
parent | e715be0f0a307e36cd34dbee6ba3dfe83b72fead (diff) |
Merge pull request #11953 from touilleMan/pluginscript
[GDnative] add pluginscript \o/
Diffstat (limited to 'modules/gdnative/SCsub')
-rw-r--r-- | modules/gdnative/SCsub | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gdnative/SCsub b/modules/gdnative/SCsub index ba4163aab7..a6ae143947 100644 --- a/modules/gdnative/SCsub +++ b/modules/gdnative/SCsub @@ -13,6 +13,7 @@ gdn_env.add_source_files(env.modules_sources, "nativescript/*.cpp") gdn_env.Append(CPPPATH=['#modules/gdnative/include/']) SConscript("nativearvr/SCsub") +SConscript("pluginscript/SCsub") def _spaced(e): return e if e[-1] == '*' else e + ' ' @@ -26,6 +27,7 @@ def _build_gdnative_api_struct_header(api): '#include <gdnative/gdnative.h>', '#include <nativearvr/godot_nativearvr.h>', '#include <nativescript/godot_nativescript.h>', + '#include <pluginscript/godot_pluginscript.h>', '', '#define GDNATIVE_API_INIT(options) do { extern const godot_gdnative_api_struct *_gdnative_wrapper_api_struct; _gdnative_wrapper_api_struct = options->api_struct; } while (0)', '', @@ -98,6 +100,7 @@ def _build_gdnative_wrapper_code(api): '', '#include <gdnative/gdnative.h>', '#include <nativescript/godot_nativescript.h>', + '#include <pluginscript/godot_pluginscript.h>', '', '#include <gdnative_api_struct.gen.h>', '', |