suyu/src/input_common/CMakeLists.txt

18 lines
353 B
CMake
Raw Normal View History

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