mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 03:10:57 +08:00
0fa8459cf3
* [inih] Use meson build, bump version * [inih] Versioning * Specify c++11 to meson to fix osx? * [inih] Version * Restore line endings * Version * Address review comments - Removed CMake package versioning - Wasn't that useful as upstream don't use semver - Use straight configure_file to install CMake package config - Make cpp feature default - Prefer PkgConfig usage * Version * Actually delete the CMakeList * Version * separate C and C++ library usage * Version * Remove unofficial CMake config * Revert "Remove unofficial CMake config" This reverts commit 94ff6a903203912b96012c8c3479e6ccf9cc2308. * Take Javier's suggestion
8 lines
403 B
Plaintext
8 lines
403 B
Plaintext
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
|