diff options
| author | 2022-10-21 02:34:06 -0400 | |
|---|---|---|
| committer | 2022-10-22 15:02:04 -0400 | |
| commit | f3c40f4a208117ceb49396a381702b01c40efdb0 (patch) | |
| tree | 9c39b4fbc68bb744aa93194b42492b9f2acec5d7 /src/common | |
| parent | general: Enforce C4800 everywhere except in video_core (diff) | |
| download | yuzu-f3c40f4a208117ceb49396a381702b01c40efdb0.tar.gz yuzu-f3c40f4a208117ceb49396a381702b01c40efdb0.tar.xz yuzu-f3c40f4a208117ceb49396a381702b01c40efdb0.zip | |
CMakeLists: Treat MSVC warnings as errors
Diffstat (limited to '')
| -rw-r--r-- | src/common/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 043f27fb1..72c406fe1 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -156,7 +156,6 @@ if (MSVC) | |||
| 156 | ) | 156 | ) |
| 157 | target_compile_options(common PRIVATE | 157 | target_compile_options(common PRIVATE |
| 158 | /W4 | 158 | /W4 |
| 159 | /WX | ||
| 160 | 159 | ||
| 161 | /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data | 160 | /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data |
| 162 | /we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data | 161 | /we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data |