]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Add vcpkg installation instructions
authorFrankXie <v-frankxie@microsoft.com>
Thu, 25 Aug 2022 03:02:12 +0000 (20:02 -0700)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Mon, 5 Sep 2022 09:27:25 +0000 (11:27 +0200)
README.md

index ab12fa34315876ea6f16656054cbc0801602d95f..9c118d07c2436551888918c4b83ff43982723b80 100644 (file)
--- a/README.md
+++ b/README.md
@@ -161,6 +161,18 @@ To install zlib-ng system-wide using the configure script:
 make install
 ```
 
+Alternatively, you can build and install zlib-ng using [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
+
+```sh or powershell
+    git clone https://github.com/Microsoft/vcpkg.git
+    cd vcpkg
+    ./bootstrap-vcpkg.sh # "./bootstrap-vcpkg.bat" for powershell
+    ./vcpkg integrate install
+    ./vcpkg install zlib-ng
+```
+
+The zlib-ng port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
+
 Contributing
 ------------