mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2025-07-17 09:25:46 +00:00
18 lines
353 B
CMake
18 lines
353 B
CMake
set(SRCS
|
|
analog_from_button.cpp
|
|
keyboard.cpp
|
|
main.cpp
|
|
)
|
|
|
|
set(HEADERS
|
|
analog_from_button.h
|
|
keyboard.h
|
|
main.h
|
|
)
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
|
|
add_library(input_common STATIC ${SRCS} ${HEADERS})
|
|
target_link_libraries(input_common common core)
|
|
|