diff options
| author | 2021-12-06 19:52:27 -0800 | |
|---|---|---|
| committer | 2021-12-06 19:52:27 -0800 | |
| commit | 204d198d166c215742ae819e14eb193c977a8ea0 (patch) | |
| tree | 24bfefb5c77a962163e8d8ef6d2cafd7c52e9422 | |
| parent | Merge pull request #7529 from german77/sdl2.0.18 (diff) | |
| parent | CMakeLists: Specify /Zm200 when compiling in MSVC (diff) | |
| download | yuzu-204d198d166c215742ae819e14eb193c977a8ea0.tar.gz yuzu-204d198d166c215742ae819e14eb193c977a8ea0.tar.xz yuzu-204d198d166c215742ae819e14eb193c977a8ea0.zip | |
Merge pull request #7531 from Morph1984/zm-msvc
CMakeLists: Specify /Zm200 when compiling in MSVC
| -rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 63dd9febf..19d16147d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt | |||
| @@ -24,6 +24,7 @@ if (MSVC) | |||
| 24 | # /W3 - Level 3 warnings | 24 | # /W3 - Level 3 warnings |
| 25 | # /MP - Multi-threaded compilation | 25 | # /MP - Multi-threaded compilation |
| 26 | # /Zi - Output debugging information | 26 | # /Zi - Output debugging information |
| 27 | # /Zm - Specifies the precompiled header memory allocation limit | ||
| 27 | # /Zo - Enhanced debug info for optimized builds | 28 | # /Zo - Enhanced debug info for optimized builds |
| 28 | # /permissive- - Enables stricter C++ standards conformance checks | 29 | # /permissive- - Enables stricter C++ standards conformance checks |
| 29 | # /EHsc - C++-only exception handling semantics | 30 | # /EHsc - C++-only exception handling semantics |
| @@ -36,6 +37,7 @@ if (MSVC) | |||
| 36 | add_compile_options( | 37 | add_compile_options( |
| 37 | /MP | 38 | /MP |
| 38 | /Zi | 39 | /Zi |
| 40 | /Zm200 | ||
| 39 | /Zo | 41 | /Zo |
| 40 | /permissive- | 42 | /permissive- |
| 41 | /EHsc | 43 | /EHsc |