diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-11-02 16:44:17 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-11-02 16:45:38 +0100 |
commit | 35ec1403dca6f56d226e1f8077deed0c93de959c (patch) | |
tree | fadfdee75441b6c9870718010b00e33d3199a8df /tools | |
parent | adf4802f4bd7fb7cafc1e94882df3f105d7f7afd (diff) | |
download | redot-cpp-35ec1403dca6f56d226e1f8077deed0c93de959c.tar.gz |
[SCons] Remove bogus CCFLAGS from windows toolchain.
The c++ standard is added as part of the main SConstruct
Diffstat (limited to 'tools')
-rw-r--r-- | tools/windows.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/windows.py b/tools/windows.py index c4cbf79..2983f50 100644 --- a/tools/windows.py +++ b/tools/windows.py @@ -39,8 +39,6 @@ def generate(env): elif sys.platform == "win32" or sys.platform == "msys": env["use_mingw"] = True mingw.generate(env) - # Still need to use C++17. - env.Append(CCFLAGS=["-std=c++17"]) # Don't want lib prefixes env["IMPLIBPREFIX"] = "" env["SHLIBPREFIX"] = "" |