diff options
author | toast2903 <22451773+lat9nq@users.noreply.github.com> | 2023-06-22 04:57:40 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 16:56:55 +0200 |
commit | c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0 (patch) | |
tree | 89247abd021459703f46c4ac7193f9a92230d9f1 /src/CMakeLists.txt | |
parent | configuration: Use enum index (diff) | |
download | yuzu-c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0.tar yuzu-c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0.tar.gz yuzu-c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0.tar.bz2 yuzu-c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0.tar.lz yuzu-c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0.tar.xz yuzu-c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0.tar.zst yuzu-c1717b3f47af88a2c836ebbf2c4c3f773ae58cb0.zip |
Diffstat (limited to '')
-rw-r--r-- | src/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e814cff19..2da983cad 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -35,6 +35,7 @@ if (MSVC) # /volatile:iso - Use strict standards-compliant volatile semantics. # /Zc:externConstexpr - Allow extern constexpr variables to have external linkage, like the standard mandates # /Zc:inline - Let codegen omit inline functions in object files + # /Zc:preprocessor - Enable standards-conforming preprocessor # /Zc:throwingNew - Let codegen assume `operator new` (without std::nothrow) will never return null # /GT - Supports fiber safety for data allocated using static thread-local storage add_compile_options( @@ -48,7 +49,7 @@ if (MSVC) /volatile:iso /Zc:externConstexpr /Zc:inline - /Zc:preprocessor # Use standards-conforming preprocessor + /Zc:preprocessor /Zc:throwingNew /GT |