2017-12-11 05:25:03 +05:30
|
|
|
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
|
2017-01-21 15:23:03 +05:30
|
|
|
|
2017-12-23 06:30:15 +05:30
|
|
|
$<$<BOOL:${SDL2_FOUND}>:sdl/sdl.cpp sdl/sdl.h>
|
2017-12-11 05:25:03 +05:30
|
|
|
)
|
2017-01-21 15:23:03 +05:30
|
|
|
|
2017-12-11 05:25:03 +05:30
|
|
|
create_target_directory_groups(input_common)
|
2017-01-21 15:23:03 +05:30
|
|
|
|
2017-05-28 06:56:55 +05:30
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common)
|
2017-01-21 15:23:03 +05:30
|
|
|
|
2017-01-21 21:03:48 +05:30
|
|
|
if(SDL2_FOUND)
|
2017-05-28 10:08:49 +05:30
|
|
|
target_link_libraries(input_common PRIVATE SDL2)
|
2017-05-28 06:56:55 +05:30
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 21:03:48 +05:30
|
|
|
endif()
|