1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-17 05:10:13 -06:00
suyu-mirror/src/input_common/CMakeLists.txt

25 lines
551 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
sdl/sdl.cpp
sdl/sdl.h
)
2017-01-21 03:53:03 -06:00
2017-01-21 09:33:48 -06:00
if(SDL2_FOUND)
target_sources(input_common PRIVATE
sdl/sdl_impl.cpp
sdl/sdl_impl.h
)
target_link_libraries(input_common PRIVATE SDL2)
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
2017-01-21 09:33:48 -06:00
endif()
create_target_directory_groups(input_common)
target_link_libraries(input_common PUBLIC core PRIVATE common)