summaryrefslogtreecommitdiff
path: root/modules/gdnative/net/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdnative/net/SCsub')
-rw-r--r--modules/gdnative/net/SCsub12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/gdnative/net/SCsub b/modules/gdnative/net/SCsub
new file mode 100644
index 0000000000..53f9271128
--- /dev/null
+++ b/modules/gdnative/net/SCsub
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+
+import os
+import methods
+
+Import('env')
+Import('env_modules')
+
+env_net_gdnative = env_modules.Clone()
+
+env_net_gdnative.Append(CPPPATH=['#modules/gdnative/include/'])
+env_net_gdnative.add_source_files(env.modules_sources, '*.cpp')