blob: 227be04c6f17d3149a62d6c070ceef0a5ac36007 (
plain)
1
2
3
4
5
6
7
|
The package inih provides unofficial CMake targets:
find_package(unofficial-inih CONFIG REQUIRED)
# C API
target_link_libraries(main PRIVATE unofficial::inih::libinih)
# C++ API (Requires "cpp" feature)
target_link_libraries(main PRIVATE unofficial::inih::inireader)
Alternatively, if you are using pckgconfig use the name "inih" for the C API and "inireader" for the C++ API
|