mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-07-04 23:31:19 +01:00
12 lines
290 B
CMake
12 lines
290 B
CMake
set(SRCS
|
|
inih/ini.c
|
|
inih/cpp/INIReader.cpp
|
|
)
|
|
set(HEADERS
|
|
inih/ini.h
|
|
inih/cpp/INIReader.h
|
|
)
|
|
|
|
create_directory_groups(${SRCS} ${HEADERS})
|
|
add_library(inih ${SRCS} ${HEADERS})
|
|
target_include_directories(inih INTERFACE .)
|