From 3067a050e9be96e0d46bb37e5dcfc293b35ef170 Mon Sep 17 00:00:00 2001 From: Monica Date: Thu, 15 Sep 2022 15:29:35 +0800 Subject: [PATCH] Add vcpkg installation instructions --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e8f74aa3a9..c255cc2de7 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,15 @@ CBLAS, a C interface to the BLAS, and (5) LAPACKE, a C interface to LAPACK. cmake -DCMAKE_INSTALL_LIBDIR=$HOME/.local/lapack .. cmake --build . -j --target install ``` - + - LAPACK can be built and installed using [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager: + ```sh + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh # ./bootstrap-vcpkg.bat for Windows + ./vcpkg integrate install + ./vcpkg install lapack + ``` + The lapack 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. ## User Support