2018-01-17 19:37:34 -05: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-08-23 20:26:47 -04:00
|
|
|
motion_input.cpp
|
|
|
|
motion_input.h
|
2020-07-22 10:39:53 -04:00
|
|
|
settings.cpp
|
|
|
|
settings.h
|
2020-07-14 13:01:36 -04:00
|
|
|
touch_from_button.cpp
|
|
|
|
touch_from_button.h
|
2020-06-21 12:36:28 -04:00
|
|
|
gcadapter/gc_adapter.cpp
|
|
|
|
gcadapter/gc_adapter.h
|
|
|
|
gcadapter/gc_poller.cpp
|
|
|
|
gcadapter/gc_poller.h
|
2018-09-20 02:28:05 -04:00
|
|
|
sdl/sdl.cpp
|
|
|
|
sdl/sdl.h
|
2019-08-24 09:57:49 -04:00
|
|
|
udp/client.cpp
|
|
|
|
udp/client.h
|
|
|
|
udp/protocol.cpp
|
|
|
|
udp/protocol.h
|
|
|
|
udp/udp.cpp
|
|
|
|
udp/udp.h
|
2018-01-17 19:37:34 -05:00
|
|
|
)
|
2017-01-21 04:53:03 -05:00
|
|
|
|
2017-01-21 10:33:48 -05:00
|
|
|
if(SDL2_FOUND)
|
2018-09-20 02:28:05 -04:00
|
|
|
target_sources(input_common PRIVATE
|
|
|
|
sdl/sdl_impl.cpp
|
|
|
|
sdl/sdl_impl.h
|
|
|
|
)
|
2017-05-28 00:38:49 -04:00
|
|
|
target_link_libraries(input_common PRIVATE SDL2)
|
2017-05-27 21:26:55 -04:00
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 10:33:48 -05:00
|
|
|
endif()
|
2018-09-20 02:28:05 -04:00
|
|
|
|
2020-07-13 14:48:19 -04:00
|
|
|
target_include_directories(input_common SYSTEM PRIVATE ${LIBUSB_INCLUDE_DIR})
|
|
|
|
target_link_libraries(input_common PRIVATE ${LIBUSB_LIBRARIES})
|
2020-06-21 12:36:28 -04:00
|
|
|
|
2018-09-20 02:28:05 -04:00
|
|
|
create_target_directory_groups(input_common)
|
2020-04-15 19:40:03 -04:00
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common Boost::boost)
|