diff options
| author | Thomas Herzog <thomas.herzog@mail.com> | 2017-07-24 04:51:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-24 04:51:34 +0200 |
| commit | b31973b64de038a1d2dfaa1fcea0c72ee5ce012b (patch) | |
| tree | 0d299c22cbffc2a353c126372a44f067914b71d0 /modules/nativescript/SCsub | |
| parent | 85aa0adeef6ab89e98105fdaa49f441e5763d970 (diff) | |
| parent | 534d62d2f4ea1ff4be11b50bc79684b5780e4615 (diff) | |
Merge pull request #9804 from karroffel/gdnative-rewrite
[GDNative] new GDNative API
Diffstat (limited to 'modules/nativescript/SCsub')
| -rw-r--r-- | modules/nativescript/SCsub | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/nativescript/SCsub b/modules/nativescript/SCsub new file mode 100644 index 0000000000..e980e40e8e --- /dev/null +++ b/modules/nativescript/SCsub @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +Import('env') + +mod_env = env.Clone() +mod_env.add_source_files(env.modules_sources, "*.cpp") +mod_env.Append(CPPPATH='#modules/gdnative') +mod_env.Append(CPPFLAGS=['-DGDAPI_BUILT_IN']) + +Export('mod_env') |