You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
317 B
CMake
10 lines
317 B
CMake
set(SRCS
|
|
include/ConvertUTF.h
|
|
include/SimpleIni.h
|
|
src/ConvertUTF.c
|
|
)
|
|
|
|
add_library(simpleini ${SRCS})
|
|
target_include_directories(simpleini PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include" "${CMAKE_CURRENT_SOURCE_DIR}/src")
|
|
target_include_directories(simpleini INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/include")
|