2017-01-21 09:53:03 +00:00
|
|
|
set(SRCS
|
2017-01-21 11:04:00 +00:00
|
|
|
analog_from_button.cpp
|
2017-01-21 09:53:03 +00:00
|
|
|
keyboard.cpp
|
|
|
|
main.cpp
|
2017-08-06 22:04:06 +01:00
|
|
|
motion_emu.cpp
|
2017-01-21 09:53:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(HEADERS
|
2017-01-21 11:04:00 +00:00
|
|
|
analog_from_button.h
|
2017-01-21 09:53:03 +00:00
|
|
|
keyboard.h
|
|
|
|
main.h
|
2017-08-06 22:04:06 +01:00
|
|
|
motion_emu.h
|
2017-01-21 09:53:03 +00:00
|
|
|
)
|
|
|
|
|
2017-01-21 15:33:48 +00:00
|
|
|
if(SDL2_FOUND)
|
|
|
|
set(SRCS ${SRCS} sdl/sdl.cpp)
|
|
|
|
set(HEADERS ${HEADERS} sdl/sdl.h)
|
|
|
|
endif()
|
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
|
|
|
|
add_library(input_common STATIC ${SRCS} ${HEADERS})
|
2017-05-28 02:26:55 +01:00
|
|
|
target_link_libraries(input_common PUBLIC core PRIVATE common)
|
2017-01-21 09:53:03 +00:00
|
|
|
|
2017-01-21 15:33:48 +00:00
|
|
|
if(SDL2_FOUND)
|
2017-05-28 05:38:49 +01:00
|
|
|
target_link_libraries(input_common PRIVATE SDL2)
|
2017-05-28 02:26:55 +01:00
|
|
|
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
|
2017-01-21 15:33:48 +00:00
|
|
|
endif()
|