citra/src/input_common/CMakeLists.txt

18 lines
353 B
CMake
Raw Normal View History

2017-01-21 15:23:03 +05:30
set(SRCS
2017-01-21 16:34:00 +05:30
analog_from_button.cpp
2017-01-21 15:23:03 +05:30
keyboard.cpp
main.cpp
)
set(HEADERS
2017-01-21 16:34:00 +05:30
analog_from_button.h
2017-01-21 15:23:03 +05:30
keyboard.h
main.h
)
create_directory_groups(${SRCS} ${HEADERS})
add_library(input_common STATIC ${SRCS} ${HEADERS})
target_link_libraries(input_common common core)