We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44f49dc commit e1779b8Copy full SHA for e1779b8
1 file changed
README.md
@@ -71,4 +71,21 @@ All APIs live in namespace `inih`. All errors are reported by throwing `std::run
71
72
## Install
73
74
-Simply copy the header file `ini/ini.h` to your project, then done.
+### Manual
75
+
76
+Simply copy the header file `ini/ini.h` to your project, then done.
77
78
+### vcpkg
79
80
+ini-cpp is in the [vcpkg registry](https://github.com/microsoft/vcpkg/tree/master/ports/ini-cpp):
81
82
+```bash
83
+vcpkg install ini-cpp
84
+```
85
86
+It is header-only, so consume it from CMake via `find_path`:
87
88
+```cmake
89
+find_path(INI_CPP_INCLUDE_DIRS "ini/ini.h")
90
+target_include_directories(main PRIVATE ${INI_CPP_INCLUDE_DIRS})
91
0 commit comments