diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-09-28 14:45:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 14:45:27 +0200 |
commit | d8af4f9e02277194ca1bb053447a25bfed2b6524 (patch) | |
tree | c33aa8ccee82b26d868fbc91abed94e2480864c2 /modules/etc/SCsub | |
parent | 243bdc4524ddcf8ac6bef03c378e14fe7bb263b8 (diff) | |
parent | 3a2ca68af3c8bafe9f60f09bd8fece894fe3a925 (diff) |
Merge pull request #22506 from akien-mga/thirdparty-no-warnings
SCons: Build thirdparty code in own env, disable warnings
Diffstat (limited to 'modules/etc/SCsub')
-rw-r--r-- | modules/etc/SCsub | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/modules/etc/SCsub b/modules/etc/SCsub index 31d8f00ef3..d2c77d6e3c 100644 --- a/modules/etc/SCsub +++ b/modules/etc/SCsub @@ -27,16 +27,20 @@ thirdparty_sources = [ ] thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources] -env_etc.add_source_files(env.modules_sources, thirdparty_sources) env_etc.Append(CPPPATH=[thirdparty_dir]) -# Godot source files -env_etc.add_source_files(env.modules_sources, "*.cpp") - # upstream uses c++11 -if (not env_etc.msvc): +if not env.msvc: env_etc.Append(CCFLAGS="-std=c++11") -# -ffast-math seems to be incompatible with ec2comp on recent versions of + +# -ffast-math seems to be incompatible with etc2comp on recent versions of # GCC and Clang if '-ffast-math' in env_etc['CCFLAGS']: env_etc['CCFLAGS'].remove('-ffast-math') + +env_thirdparty = env_etc.Clone() +env_thirdparty.disable_warnings() +env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources) + +# Godot source files +env_etc.add_source_files(env.modules_sources, "*.cpp") |