summaryrefslogtreecommitdiff
path: root/modules/cvtt/SCsub
diff options
context:
space:
mode:
Diffstat (limited to 'modules/cvtt/SCsub')
-rw-r--r--modules/cvtt/SCsub5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/cvtt/SCsub b/modules/cvtt/SCsub
index 5c396482aa..fcc69d8371 100644
--- a/modules/cvtt/SCsub
+++ b/modules/cvtt/SCsub
@@ -14,8 +14,11 @@ if env['builtin_squish']:
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
- env_cvtt.add_source_files(env.modules_sources, thirdparty_sources)
env_cvtt.Append(CPPPATH=[thirdparty_dir])
+ env_thirdparty = env_cvtt.Clone()
+ env_thirdparty.disable_warnings()
+ env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources)
+
# Godot source files
env_cvtt.add_source_files(env.modules_sources, "*.cpp")