mirror of
https://git.h3cjp.net/H3cJP/yuzu.git
synced 2024-11-14 20:32:51 +00:00
16 lines
285 B
CMake
16 lines
285 B
CMake
|
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)
|
||
|
|