From 23fa1bb86d24550d99b9b259aa1005d53e5c46ce Mon Sep 17 00:00:00 2001 From: Griffin Downs <35574547+grdowns@users.noreply.github.com> Date: Fri, 27 Sep 2019 06:46:58 -0700 Subject: [PATCH] Add vcpkg installation instructions (#495) --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 5ec9f4e..877ff8d 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,16 @@ Slightly modified versions of `"date.h"` and `"tz.h"` were voted into the C++20 ## Build & Test +You can download and install Date 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 date + +The Date port in vcpkg is updated by Microsoft team members and community contributors. If the version falls behind, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository. + You can optionally build using [CMake](https://cmake.org/). Here is a guide of how to build and test using the CMake Makefile generator. ```bash