2018-01-17 18:37:34 -06:00
|
|
|
add_library(input_common STATIC
|
|
|
|
analog_from_button.cpp
|
|
|
|
analog_from_button.h
|
|
|
|
keyboard.cpp
|
|
|
|
keyboard.h
|
|
|
|
main.cpp
|
|
|
|
main.h
|
2020-09-25 17:58:27 -05:00
|
|
|
motion_from_button.cpp
|
|
|
|
motion_from_button.h
|
2020-08-23 19:26:47 -05:00
|
|
|
motion_input.cpp
|
|
|
|
motion_input.h
|
2020-07-14 12:01:36 -05:00
|
|
|
touch_from_button.cpp
|
|
|
|
touch_from_button.h
|
2020-06-21 11:36:28 -05:00
|
|
|
gcadapter/gc_adapter.cpp
|
|
|
|
gcadapter/gc_adapter.h
|
|
|
|
gcadapter/gc_poller.cpp
|
|
|
|
gcadapter/gc_poller.h
|
2020-11-17 22:55:09 -06:00
|
|
|
mouse/mouse_input.cpp
|
|
|
|
mouse/mouse_input.h
|
|
|
|
mouse/mouse_poller.cpp
|
|
|
|
mouse/mouse_poller.h
|
2018-09-20 01:28:05 -05:00
|
|
|
sdl/sdl.cpp
|
|
|
|
sdl/sdl.h
|
2019-08-24 08:57:49 -05:00
|
|
|
udp/client.cpp
|
|
|
|
udp/client.h
|
|
|
|
udp/protocol.cpp
|
|
|
|
udp/protocol.h
|
|
|
|
udp/udp.cpp
|
|
|
|
udp/udp.h
|
2018-01-17 18:37:34 -06:00
|
|
|
)
|
2017-01-21 03:53:03 -06:00
|
|
|
|
2020-10-14 01:51:14 -05:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_options(input_common PRIVATE
|
2020-11-15 05:22:01 -06:00
|
|
|
/W4
|
|
|
|
/WX
|
|
|
|
|
2021-06-28 02:54:22 -05:00
|
|
|
/we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
|
|
|
|
/we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data
|
|
|
|
/we4245 # 'conversion': conversion from 'type1' to 'type2', signed/unsigned mismatch
|
|
|
|
/we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data
|
2020-10-14 01:51:14 -05:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(input_common PRIVATE
|
2020-11-15 05:22:01 -06:00
|
|
|
-Werror
|
2020-10-14 01:51:14 -05:00
|
|
|
-Werror=conversion
|
|
|
|
-Werror=ignored-qualifiers
|
|
|
|
-Werror=shadow
|
2020-11-25 17:56:17 -06:00
|
|
|
$<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter>
|
|
|
|
$<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable>
|
2020-10-14 01:51:14 -05:00
|
|
|
-Werror=unused-variable
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-04-17 22:35:13 -05:00
|
|
|
if (ENABLE_SDL2)
|
2018-09-20 01:28:05 -05:00
|
|
|
target_sources(input_common PRIVATE
|
|
|
|
sdl/sdl_impl.cpp
|
|
|
|
sdl/sdl_impl.h
|
|
|
|
)
|
2017-05-27 23:38:49 -05:00
|
|
|
target_link_libraries(input_common PRIVATE SDL2)
|
2017-05-27 20:26:55 -05:00
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 09:33:48 -06:00
|
|
|
endif()
|
2018-09-20 01:28:05 -05:00
|
|
|
|
2021-06-03 02:49:35 -05:00
|
|
|
target_link_libraries(input_common PRIVATE usb)
|
2020-06-21 11:36:28 -05:00
|
|
|
|
2018-09-20 01:28:05 -05:00
|
|
|
create_target_directory_groups(input_common)
|
2020-04-15 18:40:03 -05:00
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost)
|