Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Cross.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrankXie <v-frankxie@microsoft.com>2022-09-08 11:19:18 +0300
committerFrankXie <v-frankxie@microsoft.com>2022-09-08 11:19:18 +0300
commitd206e54ecefb30206f9c58124f8d710d736d4a2f (patch)
tree209d3408ebe21bb5c9d904f47b3f6d986c925c9b
parent210a80013067672b52847ec7aa70ff78b2f4d77e (diff)
Add vcpkg installation instructions
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9dbad82c..fbf5e835 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,20 @@ The make and CMake build flavors offer the option to treat exceptions as asserti
You can use `-DSPIRV_CROSS_STATIC=ON/OFF` `-DSPIRV_CROSS_SHARED=ON/OFF` `-DSPIRV_CROSS_CLI=ON/OFF` to control which modules are built (and installed).
+### Installing SPIRV-Cross (vcpkg)
+
+Alternatively, you can build and install SPIRV-Cross using [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 spirv-cross
+```
+
+The SPIRV-Cross 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.
+
## Usage
### Using the C++ API