summaryrefslogtreecommitdiff
path: root/modules/gltf/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gltf/SCsub')
-rw-r--r--modules/gltf/SCsub10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/gltf/SCsub b/modules/gltf/SCsub
new file mode 100644
index 0000000000..5d03ee8361
--- /dev/null
+++ b/modules/gltf/SCsub
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+
+Import("env")
+Import("env_modules")
+
+env_gltf = env_modules.Clone()
+env_gltf.Prepend(CPPPATH=["."])
+
+# Godot's own source files
+env_gltf.add_source_files(env.modules_sources, "*.cpp")