diff options
author | Karroffel <therzog@mail.de> | 2017-11-10 12:36:50 +0100 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-11-10 12:36:50 +0100 |
commit | 79285b084df425cadb23da21bc04c08c300d6cad (patch) | |
tree | 5a655d57f0ddeb2c6bc43dd7d72178767b5e2709 /modules/gdnative/arvr/SCsub | |
parent | 7ae2de8997fadd692f5e43839633fbfdf3816e66 (diff) |
[GDNative] rename nativearvr extension to arvr
Diffstat (limited to 'modules/gdnative/arvr/SCsub')
-rw-r--r-- | modules/gdnative/arvr/SCsub | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/gdnative/arvr/SCsub b/modules/gdnative/arvr/SCsub new file mode 100644 index 0000000000..ecc5996108 --- /dev/null +++ b/modules/gdnative/arvr/SCsub @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +import os +import methods + +Import('env') +Import('env_modules') + +env_arvr_gdnative = env_modules.Clone() + +env_arvr_gdnative.Append(CPPPATH=['#modules/gdnative/include/']) +env_arvr_gdnative.add_source_files(env.modules_sources, '*.cpp') + |