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 /modules/vhacd | |
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 'modules/vhacd')
-rw-r--r-- | modules/vhacd/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/vhacd/SCsub b/modules/vhacd/SCsub index 11cd5f4743..fdd3ddc1e6 100644 --- a/modules/vhacd/SCsub +++ b/modules/vhacd/SCsub @@ -29,7 +29,7 @@ env_vhacd.Append(CPPFLAGS=["-DGODOT_ENET"]) # upstream uses c++11 if not env.msvc: - env_vhacd.Append(CCFLAGS="-std=c++11") + env_vhacd.Append(CXXFLAGS="-std=c++11") env_thirdparty = env_vhacd.Clone() env_thirdparty.disable_warnings() |