2018-01-18 01:37:34 +01:00
|
|
|
add_library(input_common STATIC
|
|
|
|
analog_from_button.cpp
|
|
|
|
analog_from_button.h
|
|
|
|
keyboard.cpp
|
|
|
|
keyboard.h
|
2021-09-20 23:41:15 +02:00
|
|
|
input_engine.cpp
|
|
|
|
input_engine.h
|
|
|
|
input_mapping.cpp
|
|
|
|
input_mapping.h
|
|
|
|
input_poller.cpp
|
|
|
|
input_poller.h
|
2018-01-18 01:37:34 +01:00
|
|
|
main.cpp
|
|
|
|
main.h
|
2020-09-26 00:58:27 +02:00
|
|
|
motion_from_button.cpp
|
|
|
|
motion_from_button.h
|
2020-08-24 02:26:47 +02:00
|
|
|
motion_input.cpp
|
|
|
|
motion_input.h
|
2020-07-14 19:01:36 +02:00
|
|
|
touch_from_button.cpp
|
|
|
|
touch_from_button.h
|
2020-06-21 18:36:28 +02:00
|
|
|
gcadapter/gc_adapter.cpp
|
|
|
|
gcadapter/gc_adapter.h
|
|
|
|
gcadapter/gc_poller.cpp
|
|
|
|
gcadapter/gc_poller.h
|
2020-11-18 05:55:09 +01:00
|
|
|
mouse/mouse_input.cpp
|
|
|
|
mouse/mouse_input.h
|
|
|
|
mouse/mouse_poller.cpp
|
|
|
|
mouse/mouse_poller.h
|
2018-09-20 08:28:05 +02:00
|
|
|
sdl/sdl.cpp
|
|
|
|
sdl/sdl.h
|
2021-06-18 16:15:42 +02:00
|
|
|
tas/tas_input.cpp
|
|
|
|
tas/tas_input.h
|
|
|
|
tas/tas_poller.cpp
|
|
|
|
tas/tas_poller.h
|
2019-08-24 15:57:49 +02:00
|
|
|
udp/client.cpp
|
|
|
|
udp/client.h
|
|
|
|
udp/protocol.cpp
|
|
|
|
udp/protocol.h
|
|
|
|
udp/udp.cpp
|
|
|
|
udp/udp.h
|
2018-01-18 01:37:34 +01:00
|
|
|
)
|
2017-01-21 10:53:03 +01:00
|
|
|
|
2020-10-14 08:51:14 +02:00
|
|
|
if (MSVC)
|
|
|
|
target_compile_options(input_common PRIVATE
|
2020-11-15 12:22:01 +01:00
|
|
|
/W4
|
|
|
|
/WX
|
|
|
|
|
2021-06-28 09:54:22 +02: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 08:51:14 +02:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(input_common PRIVATE
|
2020-11-15 12:22:01 +01:00
|
|
|
-Werror
|
2020-10-14 08:51:14 +02:00
|
|
|
-Werror=conversion
|
|
|
|
-Werror=ignored-qualifiers
|
|
|
|
-Werror=shadow
|
2020-11-26 00:56:17 +01:00
|
|
|
$<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-parameter>
|
|
|
|
$<$<CXX_COMPILER_ID:GNU>:-Werror=unused-but-set-variable>
|
2020-10-14 08:51:14 +02:00
|
|
|
-Werror=unused-variable
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-04-18 05:35:13 +02:00
|
|
|
if (ENABLE_SDL2)
|
2018-09-20 08:28:05 +02:00
|
|
|
target_sources(input_common PRIVATE
|
|
|
|
sdl/sdl_impl.cpp
|
|
|
|
sdl/sdl_impl.h
|
|
|
|
)
|
2017-05-28 06:38:49 +02:00
|
|
|
target_link_libraries(input_common PRIVATE SDL2)
|
2017-05-28 03:26:55 +02:00
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 16:33:48 +01:00
|
|
|
endif()
|
2018-09-20 08:28:05 +02:00
|
|
|
|
2021-06-03 09:49:35 +02:00
|
|
|
target_link_libraries(input_common PRIVATE usb)
|
2020-06-21 18:36:28 +02:00
|
|
|
|
2018-09-20 08:28:05 +02:00
|
|
|
create_target_directory_groups(input_common)
|
2020-04-16 01:40:03 +02:00
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost)
|