yuzu-android/src/input_common/CMakeLists.txt

29 lines
655 B
CMake
Raw Normal View History

2017-01-21 11:53:03 +02:00
set(SRCS
2017-01-21 13:04:00 +02:00
analog_from_button.cpp
2017-01-21 11:53:03 +02:00
keyboard.cpp
main.cpp
motion_emu.cpp
2017-01-21 11:53:03 +02:00
)
set(HEADERS
2017-01-21 13:04:00 +02:00
analog_from_button.h
2017-01-21 11:53:03 +02:00
keyboard.h
main.h
motion_emu.h
2017-01-21 11:53:03 +02:00
)
2017-01-21 17:33:48 +02:00
if(SDL2_FOUND)
set(SRCS ${SRCS} sdl/sdl.cpp)
set(HEADERS ${HEADERS} sdl/sdl.h)
endif()
2017-01-21 11:53:03 +02:00
create_directory_groups(${SRCS} ${HEADERS})
add_library(input_common STATIC ${SRCS} ${HEADERS})
target_link_libraries(input_common PUBLIC core PRIVATE common)
2017-01-21 11:53:03 +02:00
2017-01-21 17:33:48 +02:00
if(SDL2_FOUND)
target_link_libraries(input_common PRIVATE SDL2)
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
2017-01-21 17:33:48 +02:00
endif()