mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 18:28:38 -05:00
InputCommon: add Keyboard
This commit is contained in:
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)
|
||||
|
Reference in New Issue
Block a user