citra/src/input_common/CMakeLists.txt

29 lines
655 B
CMake
Raw Normal View History

2017-01-21 10:53:03 +01:00
set(SRCS
2017-01-21 12:04:00 +01:00
analog_from_button.cpp
2017-01-21 10:53:03 +01:00
keyboard.cpp
main.cpp
motion_emu.cpp
2017-01-21 10:53:03 +01:00
)
set(HEADERS
2017-01-21 12:04:00 +01:00
analog_from_button.h
2017-01-21 10:53:03 +01:00
keyboard.h
main.h
motion_emu.h
2017-01-21 10:53:03 +01:00
)
2017-01-21 16:33:48 +01:00
if(SDL2_FOUND)
set(SRCS ${SRCS} sdl/sdl.cpp)
set(HEADERS ${HEADERS} sdl/sdl.h)
endif()
2017-01-21 10:53:03 +01: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 10:53:03 +01:00
2017-01-21 16:33:48 +01:00
if(SDL2_FOUND)
target_link_libraries(input_common PRIVATE SDL2)
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
2017-01-21 16:33:48 +01:00
endif()