suyu/src/input_common/CMakeLists.txt

18 lines
353 B
Text
Raw Normal View History

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