2017-12-10 18:55:03 -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
|
2018-01-18 08:43:17 -07:00
|
|
|
udp/client.cpp
|
|
|
|
udp/client.h
|
|
|
|
udp/protocol.cpp
|
|
|
|
udp/protocol.h
|
|
|
|
udp/udp.cpp
|
|
|
|
udp/udp.h
|
2017-01-21 11:53:03 +02:00
|
|
|
|
2017-12-23 03:00:15 +02:00
|
|
|
$<$<BOOL:${SDL2_FOUND}>:sdl/sdl.cpp sdl/sdl.h>
|
2017-12-10 18:55:03 -05:00
|
|
|
)
|
2017-01-21 11:53:03 +02:00
|
|
|
|
2017-12-10 18:55:03 -05:00
|
|
|
create_target_directory_groups(input_common)
|
2018-01-18 08:43:17 -07:00
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common ${Boost_LIBRARIES})
|
2017-01-21 11:53:03 +02:00
|
|
|
|
2017-01-21 17:33:48 +02:00
|
|
|
if(SDL2_FOUND)
|
2017-05-27 21:38:49 -07:00
|
|
|
target_link_libraries(input_common PRIVATE SDL2)
|
2017-05-27 18:26:55 -07:00
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 17:33:48 +02:00
|
|
|
endif()
|