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