From 6d2b64eff9ecbed300cf8c7d2a50c5dd87ca7d71 Mon Sep 17 00:00:00 2001 From: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Date: Thu, 13 Feb 2020 23:16:26 +0800 Subject: [PATCH] Update vcpkg installation instructions (#314) * Update vcpkg installation instructions * Update --- README.md | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5e04773c..a2ae3ffd 100644 --- a/README.md +++ b/README.md @@ -169,16 +169,21 @@ __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 - ``` +```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. +The following connector libraries for sqlpp11 are maintained as a separate package in vcpkg: + + * [sqlpp11-connector-sqlite3](https://github.com/microsoft/vcpkg/tree/master/ports/sqlpp11-connector-sqlite3) + * [sqlpp11-connector-mysql](https://github.com/microsoft/vcpkg/tree/master/ports/sqlpp11-connector-mysql) + Basic usage: -------------