From: FrankXie Date: Thu, 25 Aug 2022 03:02:12 +0000 (-0700) Subject: Add vcpkg installation instructions X-Git-Tag: 2.1.0-beta1~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03c989a1059413a82db20dbd262e48b19c302f28;p=thirdparty%2Fzlib-ng.git Add vcpkg installation instructions --- diff --git a/README.md b/README.md index ab12fa343..9c118d07c 100644 --- 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 ------------