From 940335d82fb1a37ad52dd2bb42836de2d74a3dd5 Mon Sep 17 00:00:00 2001 From: Lily <47812810+LilyWangL@users.noreply.github.com> Date: Wed, 25 Mar 2020 16:08:16 +0800 Subject: [PATCH] Add vcpkg installation instructions (#517) Add vcpkg installation instructions --- INSTALL | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/INSTALL b/INSTALL index 0f3b55d..e9530ac 100644 --- a/INSTALL +++ b/INSTALL @@ -130,6 +130,22 @@ The simplest way to compile this package is: 6. Often, you can also type `make uninstall' to remove the installed files again. + +Building glog - Using vcpkg +=========================== + +The url of vcpkg is: https://github.com/Microsoft/vcpkg +You can download and install glog using the vcpkg dependency manager: + + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh + ./vcpkg integrate install + ./vcpkg install glog + +The glog 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 on the vcpkg repository. + + Compilers and Options =====================