mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 18:18:59 +08:00
16 lines
277 B
CMake
16 lines
277 B
CMake
project(inih)
|
|
|
|
set(SOURCES ini.c cpp/INIReader.cpp)
|
|
set(HEADERS ini.h cpp/INIReader.h)
|
|
|
|
add_library(inih ${SOURCES})
|
|
|
|
install(
|
|
TARGETS inih
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|
|
|
|
install(FILES ${HEADERS} DESTINATION include)
|