From 2ddf01af41af0b5dfd3ad72f9d001d1e5f45a3f1 Mon Sep 17 00:00:00 2001 From: NancyLi1013 Date: Wed, 26 Feb 2020 04:44:05 -0800 Subject: [PATCH] Add vcpkg installation instructions --- INSTALL | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/INSTALL b/INSTALL index 4f717e9c216..fe902983bfe 100644 --- a/INSTALL +++ b/INSTALL @@ -33,3 +33,17 @@ The "make install" step may require administrator privileges. You can adjust the installation destination (the "prefix") by passing the -DCMAKE_INSTALL_PREFIX=myprefix option to cmake, as is explained in the message that cmake prints at the end. + +Method 3. Installing using vcpkg +******************************** + +You can download and install eigen 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 eigen3 + +The eigen 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. +