yuzu-fork/src/input_common/CMakeLists.txt

18 lines
353 B
CMake
Raw Normal View History

2017-01-21 09:53:03 +00:00
set(SRCS
2017-01-21 11:04:00 +00:00
analog_from_button.cpp
2017-01-21 09:53:03 +00:00
keyboard.cpp
main.cpp
)
set(HEADERS
2017-01-21 11:04:00 +00:00
analog_from_button.h
2017-01-21 09:53:03 +00:00
keyboard.h
main.h
)
create_directory_groups(${SRCS} ${HEADERS})
add_library(input_common STATIC ${SRCS} ${HEADERS})
target_link_libraries(input_common common core)