diff options
Diffstat (limited to 'vcpkg/ports/inih/usage')
| -rw-r--r-- | vcpkg/ports/inih/usage | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vcpkg/ports/inih/usage b/vcpkg/ports/inih/usage new file mode 100644 index 0000000..227be04 --- /dev/null +++ b/vcpkg/ports/inih/usage @@ -0,0 +1,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
|