diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-25 12:22:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 12:22:22 +0200 |
commit | 24005bc03d4774afb5a3eb44db25711c3a9cedf1 (patch) | |
tree | fa4d2650672a63b0f4a214c1c6aaff7310eb580c /core/SCsub | |
parent | 7dc7cbea0a576b65562988dee1c143dcc945d369 (diff) | |
parent | c2a669a9f03e249fb4fca96a2adf63256eb8dfa2 (diff) |
Merge pull request #28396 from akien-mga/scons-capture-the-flags
SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGS
Diffstat (limited to 'core/SCsub')
-rw-r--r-- | core/SCsub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/SCsub b/core/SCsub index 00d0bcac24..d5be74a64f 100644 --- a/core/SCsub +++ b/core/SCsub @@ -129,10 +129,10 @@ if env['builtin_zstd']: thirdparty_zstd_sources = [thirdparty_zstd_dir + file for file in thirdparty_zstd_sources] env_thirdparty.Append(CPPPATH=[thirdparty_zstd_dir, thirdparty_zstd_dir + "common"]) - env_thirdparty.Append(CCFLAGS="-DZSTD_STATIC_LINKING_ONLY") + env_thirdparty.Append(CPPFLAGS="-DZSTD_STATIC_LINKING_ONLY") env.Append(CPPPATH=thirdparty_zstd_dir) # Also needed in main env includes will trigger warnings - env.Append(CCFLAGS="-DZSTD_STATIC_LINKING_ONLY") + env.Append(CPPFLAGS="-DZSTD_STATIC_LINKING_ONLY") env_thirdparty.add_source_files(env.core_sources, thirdparty_zstd_sources) |