diff options
Diffstat (limited to 'src/input_common/CMakeLists.txt')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 317c25bad..7b39a38c1 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -7,6 +7,14 @@ add_library(input_common STATIC | |||
| 7 | main.h | 7 | main.h |
| 8 | motion_emu.cpp | 8 | motion_emu.cpp |
| 9 | motion_emu.h | 9 | motion_emu.h |
| 10 | motion_from_button.cpp | ||
| 11 | motion_from_button.h | ||
| 12 | motion_input.cpp | ||
| 13 | motion_input.h | ||
| 14 | settings.cpp | ||
| 15 | settings.h | ||
| 16 | touch_from_button.cpp | ||
| 17 | touch_from_button.h | ||
| 10 | gcadapter/gc_adapter.cpp | 18 | gcadapter/gc_adapter.cpp |
| 11 | gcadapter/gc_adapter.h | 19 | gcadapter/gc_adapter.h |
| 12 | gcadapter/gc_poller.cpp | 20 | gcadapter/gc_poller.cpp |
| @@ -21,6 +29,35 @@ add_library(input_common STATIC | |||
| 21 | udp/udp.h | 29 | udp/udp.h |
| 22 | ) | 30 | ) |
| 23 | 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 | |||
| 24 | if(SDL2_FOUND) | 61 | if(SDL2_FOUND) |
| 25 | target_sources(input_common PRIVATE | 62 | target_sources(input_common PRIVATE |
| 26 | sdl/sdl_impl.cpp | 63 | sdl/sdl_impl.cpp |