summaryrefslogtreecommitdiff
path: root/modules/cvtt
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-09-28 14:45:27 +0200
committerGitHub <noreply@github.com>2018-09-28 14:45:27 +0200
commitd8af4f9e02277194ca1bb053447a25bfed2b6524 (patch)
treec33aa8ccee82b26d868fbc91abed94e2480864c2 /modules/cvtt
parent243bdc4524ddcf8ac6bef03c378e14fe7bb263b8 (diff)
parent3a2ca68af3c8bafe9f60f09bd8fece894fe3a925 (diff)
Merge pull request #22506 from akien-mga/thirdparty-no-warnings
SCons: Build thirdparty code in own env, disable warnings
Diffstat (limited to 'modules/cvtt')
-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")