From 5ad5b96ca8858760f6163d16b1f950d50490c142 Mon Sep 17 00:00:00 2001 From: FrankXie Date: Thu, 15 Sep 2022 19:28:06 -0700 Subject: [PATCH] Add vcpkg installation instructions --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 0e3075b24..dbeb93947 100644 --- a/README.md +++ b/README.md @@ -220,6 +220,20 @@ test.vert /code $ glslc -c -o - test.vert | spirv-dis ``` +### Building and installing Shaderc using vcpkg + +Alternatively, you can build and install shaderc using [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 shaderc +``` + +The shaderc 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. + ## Bug tracking We track bugs using GitHub -- click on the "Issues" button on