yuzu/src/input_common/CMakeLists.txt

28 lines
659 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
)
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
)
2017-01-21 16:33:48 +01: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 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_LIBRARY})
target_compile_definitions(input_common PRIVATE HAVE_SDL2)
2017-01-21 16:33:48 +01:00
endif()