summaryrefslogtreecommitdiff
path: root/modules/ogg/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'modules/ogg/SCsub')
-rw-r--r--modules/ogg/SCsub20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/ogg/SCsub b/modules/ogg/SCsub
new file mode 100644
index 0000000000..42d593f88e
--- /dev/null
+++ b/modules/ogg/SCsub
@@ -0,0 +1,20 @@
+Import('env')
+Import('env_modules')
+
+# Thirdparty source files
+if (env["libogg"] != "system"): # builtin
+ thirdparty_dir = "#thirdparty/libogg/"
+ thirdparty_libogg_sources = [
+ "bitwise.c",
+ "framing.c",
+ ]
+ thirdparty_libogg_sources = [thirdparty_dir + file for file in thirdparty_libogg_sources]
+
+ env_modules.add_source_files(env.modules_sources, thirdparty_libogg_sources)
+ env_modules.Append(CPPPATH = [thirdparty_dir])
+
+# Godot source files
+env_modules.add_source_files(env.modules_sources, "*.cpp")
+
+Export('env_modules')
+Export('env')