yuzu/src/input_common/CMakeLists.txt

22 lines
480 B
CMake
Raw Normal View History

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 10:53:03 +01:00
$<$<BOOL:${SDL2_FOUND}>:sdl/sdl.cpp sdl/sdl.h>
)
2017-01-21 10:53:03 +01:00
create_target_directory_groups(input_common)
2017-01-21 10:53:03 +01:00
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()