diff options
Diffstat (limited to 'src/input_common/CMakeLists.txt')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index c84685214..7b39a38c1 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -29,6 +29,35 @@ add_library(input_common STATIC | |||
| 29 | udp/udp.h | 29 | udp/udp.h |
| 30 | ) | 30 | ) |
| 31 | 31 | ||
| 32 | if (MSVC) | ||
| 33 | target_compile_options(input_common PRIVATE | ||
| 34 | # 'expression' : signed/unsigned mismatch | ||
| 35 | /we4018 | ||
| 36 | # 'argument' : conversion from 'type1' to 'type2', possible loss of data (floating-point) | ||
| 37 | /we4244 | ||
| 38 | # 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch | ||
| 39 | /we4245 | ||
| 40 | # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data | ||
| 41 | /we4254 | ||
| 42 | # 'var' : conversion from 'size_t' to 'type', possible loss of data | ||
| 43 | /we4267 | ||
| 44 | # 'context' : truncation from 'type1' to 'type2' | ||
| 45 | /we4305 | ||
| 46 | ) | ||
| 47 | else() | ||
| 48 | target_compile_options(input_common PRIVATE | ||
| 49 | -Werror=conversion | ||
| 50 | -Werror=ignored-qualifiers | ||
| 51 | -Werror=implicit-fallthrough | ||
| 52 | -Werror=reorder | ||
| 53 | -Werror=shadow | ||
| 54 | -Werror=sign-compare | ||
| 55 | -Werror=unused-but-set-parameter | ||
| 56 | -Werror=unused-but-set-variable | ||
| 57 | -Werror=unused-variable | ||
| 58 | ) | ||
| 59 | endif() | ||
| 60 | |||
| 32 | if(SDL2_FOUND) | 61 | if(SDL2_FOUND) |
| 33 | target_sources(input_common PRIVATE | 62 | target_sources(input_common PRIVATE |
| 34 | sdl/sdl_impl.cpp | 63 | sdl/sdl_impl.cpp |