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
|
|
|
|
)
|
|
|
|
|
|
|
|
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-01-21 15:33:48 +00:00
|
|
|
if(SDL2_FOUND)
|
|
|
|
set(SRCS ${SRCS} sdl/sdl.cpp)
|
|
|
|
set(HEADERS ${HEADERS} sdl/sdl.h)
|
|
|
|
include_directories(${SDL2_INCLUDE_DIR})
|
|
|
|
endif()
|
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
|
|
|
|
add_library(input_common STATIC ${SRCS} ${HEADERS})
|
|
|
|
target_link_libraries(input_common common core)
|
|
|
|
|
2017-01-21 15:33:48 +00:00
|
|
|
if(SDL2_FOUND)
|
|
|
|
target_link_libraries(input_common ${SDL2_LIBRARY})
|
|
|
|
set_property(TARGET input_common APPEND PROPERTY COMPILE_DEFINITIONS HAVE_SDL2)
|
|
|
|
endif()
|