From e35785cab2dc0c1ac41e728730efc4534b94ecc8 Mon Sep 17 00:00:00 2001 From: NancyLi1013 Date: Wed, 12 Feb 2020 01:03:17 -0800 Subject: [PATCH] Add vcpkg installation instructions --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 6f7b64d3..5e04773c 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,19 @@ brew install marvin182/zapfhahn/sqlpp11 Some connectors can be installed with the formula. See `brew info marvin182/zapfhahn/sqlpp11` for available options. +__Build via vcpkg:__ + +You can download and install sqlpp11 using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: + + ```bash + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh + ./vcpkg integrate install + vcpkg install sqlpp11 + ``` + +The sqlpp11 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. Basic usage: -------------