From 9c134a8c8b0ef933c6d696bcb9df7e12f4e5c4ea Mon Sep 17 00:00:00 2001 From: grdowns Date: Fri, 27 Sep 2019 04:29:07 -0700 Subject: [PATCH] Add vcpkg installation instructions --- INSTALL.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 76d7edd..a08c69d 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -10,6 +10,18 @@ following command: sudo apt-get install libgflags-dev +Compiling the source code with vcpkg +========================= + +You can download and install gflags using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: + + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh + ./vcpkg integrate install + vcpkg install gflags + +The gflags 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. Compiling the source code with CMake =========================