diff options
| author | 2022-10-21 02:34:06 -0400 | |
|---|---|---|
| committer | 2022-10-22 15:02:04 -0400 | |
| commit | f3c40f4a208117ceb49396a381702b01c40efdb0 (patch) | |
| tree | 9c39b4fbc68bb744aa93194b42492b9f2acec5d7 /src/shader_recompiler | |
| 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 'src/shader_recompiler')
| -rw-r--r-- | src/shader_recompiler/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/shader_recompiler/CMakeLists.txt b/src/shader_recompiler/CMakeLists.txt index 967da0791..bde1c1329 100644 --- a/src/shader_recompiler/CMakeLists.txt +++ b/src/shader_recompiler/CMakeLists.txt | |||
| @@ -241,7 +241,6 @@ target_link_libraries(shader_recompiler PUBLIC common fmt::fmt sirit) | |||
| 241 | if (MSVC) | 241 | if (MSVC) |
| 242 | target_compile_options(shader_recompiler PRIVATE | 242 | target_compile_options(shader_recompiler PRIVATE |
| 243 | /W4 | 243 | /W4 |
| 244 | /WX | ||
| 245 | 244 | ||
| 246 | /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data | 245 | /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data |
| 247 | /we4244 # 'argument' : conversion from 'type1' to 'type2', possible loss of data (floating-point) | 246 | /we4244 # 'argument' : conversion from 'type1' to 'type2', possible loss of data (floating-point) |