From 08e4bb339e34017a0835269d4a37c4ea04d15a69 Mon Sep 17 00:00:00 2001 From: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com> Date: Wed, 14 Sep 2022 22:12:17 +0800 Subject: [PATCH] Add vcpkg installation instructions (#211) --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 22fabac..9ee8d1b 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,18 @@ $ touch WORKSPACE # declare that to be our workspace root $ bazel build gemmlowp:all ``` +### Building gemmlowp - Using vcpkg + +You can download and install gemmlowp 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 gemmlowp + +The gemmlowp 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. + ## Testing ### Testing by manually building and running tests