diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-08-28 15:29:42 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-09-05 11:44:57 -0500 |
commit | 4c84cb6ae8dc241eb3f50dd8899132024592dee2 (patch) | |
tree | 7eb861c7e5d159f61a7794152a2c1859247f5162 /SConstruct | |
parent | 88ed6af1e6844908293aa1599421b40870be513c (diff) | |
download | redot-engine-4c84cb6ae8dc241eb3f50dd8899132024592dee2.tar.gz |
SCons: Pass `/Zc:__cplusplus` in MSVC builds
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 0297cd6e61..5c1ccd2449 100644 --- a/SConstruct +++ b/SConstruct @@ -791,6 +791,8 @@ else: # Note that this is still not complete conformance, as certain Windows-related headers # don't compile under complete conformance. env.Prepend(CCFLAGS=["/permissive-"]) + # Allow use of `__cplusplus` macro to determine C++ standard universally. + env.Prepend(CXXFLAGS=["/Zc:__cplusplus"]) # Disable exception handling. Godot doesn't use exceptions anywhere, and this # saves around 20% of binary size and very significant build time (GH-80513). |