InputCommon: add Keyboard
This commit is contained in:
parent
70420272ca
commit
38e800f70d
17 changed files with 254 additions and 85 deletions
15
src/input_common/CMakeLists.txt
Normal file
15
src/input_common/CMakeLists.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
set(SRCS
|
||||
keyboard.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
set(HEADERS
|
||||
keyboard.h
|
||||
main.h
|
||||
)
|
||||
|
||||
create_directory_groups(${SRCS} ${HEADERS})
|
||||
|
||||
add_library(input_common STATIC ${SRCS} ${HEADERS})
|
||||
target_link_libraries(input_common common core)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue