diff options
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/CMakeLists.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt new file mode 100644 index 000000000..ac1ad45a9 --- /dev/null +++ b/src/input_common/CMakeLists.txt | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | set(SRCS | ||
| 2 | keyboard.cpp | ||
| 3 | main.cpp | ||
| 4 | ) | ||
| 5 | |||
| 6 | set(HEADERS | ||
| 7 | keyboard.h | ||
| 8 | main.h | ||
| 9 | ) | ||
| 10 | |||
| 11 | create_directory_groups(${SRCS} ${HEADERS}) | ||
| 12 | |||
| 13 | add_library(input_common STATIC ${SRCS} ${HEADERS}) | ||
| 14 | target_link_libraries(input_common common core) | ||
| 15 | |||