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
|
|
|
|
main.cpp
|
|
|
|
main.h
|
|
|
|
motion_emu.cpp
|
|
|
|
motion_emu.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-22 16:39:53 +02:00
|
|
|
settings.cpp
|
|
|
|
settings.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
|
2018-09-20 08:28:05 +02:00
|
|
|
sdl/sdl.cpp
|
|
|
|
sdl/sdl.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
|
|
|
|
2017-01-21 16:33:48 +01:00
|
|
|
if(SDL2_FOUND)
|
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
|
|
|
|
2020-07-13 20:48:19 +02:00
|
|
|
target_include_directories(input_common SYSTEM PRIVATE ${LIBUSB_INCLUDE_DIR})
|
|
|
|
target_link_libraries(input_common PRIVATE ${LIBUSB_LIBRARIES})
|
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)
|