From bf644237e4ba35a13e1385c19bbb9f08225ad5f6 Mon Sep 17 00:00:00 2001 From: Mengna Li <95600143+Adela0814@users.noreply.github.com> Date: Thu, 1 Sep 2022 10:27:13 +0800 Subject: [PATCH 1/2] Add vcpkg installation instructions --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 3e6a16b4..29634adb 100644 --- a/README.md +++ b/README.md @@ -250,6 +250,19 @@ Please check the [CMake build instructions](cmake/README.md). cmake --build build --config Release --target install -v -- DESTDIR=install ``` +- Installing cpu_features(vcpkg) + + You can download and install cpu_features using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: + ```sh + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh + ./vcpkg integrate install + ./vcpkg install cpu_features + ``` + + The cpu_features 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. + ## Community bindings From 457ddf9d3ebe1d2a7dc31a20ed09eb8bd0738cdc Mon Sep 17 00:00:00 2001 From: Mengna Li <95600143+Adela0814@users.noreply.github.com> Date: Mon, 5 Sep 2022 17:30:42 +0800 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29634adb..61b79d42 100644 --- a/README.md +++ b/README.md @@ -258,7 +258,7 @@ Please check the [CMake build instructions](cmake/README.md). cd vcpkg ./bootstrap-vcpkg.sh ./vcpkg integrate install - ./vcpkg install cpu_features + ./vcpkg install cpu-features ``` The cpu_features 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.