We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bc489e commit 3bb86f1Copy full SHA for 3bb86f1
SConstruct
@@ -170,9 +170,9 @@ if host_platform == "windows" and env["platform"] != "android":
170
# Require C++17
171
if host_platform == "windows" and env["platform"] == "windows" and not env["use_mingw"]:
172
# MSVC
173
- env.Append(CCFLAGS=["/std:c++17"])
+ env.Append(CXXFLAGS=["/std:c++17"])
174
else:
175
- env.Append(CCFLAGS=["-std=c++17"])
+ env.Append(CXXFLAGS=["-std=c++17"])
176
177
if env["target"] == "debug":
178
env.Append(CPPDEFINES=["DEBUG_ENABLED", "DEBUG_METHODS_ENABLED"])
0 commit comments