summaryrefslogtreecommitdiff
path: root/modules/gdnative/nativearvr/SCsub
diff options
context:
space:
mode:
authorBastiaanOlij <mux213@gmail.com>2017-10-08 00:51:17 +1100
committerBastiaanOlij <mux213@gmail.com>2017-10-14 09:10:18 +1100
commitcc37d43f861b2fd4c3c5d5fbaf7186bf5c30d35f (patch)
tree98fefbcb57a800a0a7b84ae28ab06cdba38a34c6 /modules/gdnative/nativearvr/SCsub
parent4585239a4bcb5350fadc1fbe5a6db1c2e67ab06a (diff)
Redoing the ARVR GDNative interface as module and tighter implementation
Diffstat (limited to 'modules/gdnative/nativearvr/SCsub')
-rw-r--r--modules/gdnative/nativearvr/SCsub13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/gdnative/nativearvr/SCsub b/modules/gdnative/nativearvr/SCsub
new file mode 100644
index 0000000000..ecc5996108
--- /dev/null
+++ b/modules/gdnative/nativearvr/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')
+