From 1968eb0952af525880fa93677e6b7ee47928d4fc Mon Sep 17 00:00:00 2001 From: Lily <47812810+LilyWangL@users.noreply.github.com> Date: Mon, 17 Feb 2020 16:12:15 +0800 Subject: [PATCH] Add vcpkg installation instructions (#1208) * Add vcpkg installation instructions * Add vcpkg installation instructions * Add vcpkg installation instructions * Add vcpkg installation instructions --- docs/COMPILE.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/COMPILE.md b/docs/COMPILE.md index 22fd66cd..a5ec77fe 100644 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -11,3 +11,15 @@ Then learn more on how to code your own tools with our samples. - For C sample code, see code in directory samples/sample*.c - For Python sample code, see code in directory bindings/python/sample*.py - For samples of other bindings, look into directories bindings// + +#Building unicorn - Using vcpkg + +You can download and install unicorn 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 unicorn + +The unicorn 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. \ No newline at end of file