mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 08:10:05 +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)
|
|
|