We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d658d8 commit 23f7fe0Copy full SHA for 23f7fe0
2 files changed
.github/workflows/build-test.yml
@@ -18,6 +18,7 @@ permissions:
18
env:
19
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
_VCPKG_: ${{ github.workspace }}/external/microsoft/vcpkg
21
+ VCPKG_ROOT: ${{ github.workspace }}/external/microsoft/vcpkg
22
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
23
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/external/microsoft/vcpkg/bincache
24
VCPKG_FEATURE_FLAGS: "dependencygraph"
README.md
@@ -14,7 +14,11 @@ To build:
14
15
```sh
16
git submodule update --init
17
+
+# Set up vcpkg -- you can also use a vcpkg elsewhere via VCPKG_ROOT
cd external/microsoft/vcpkg && ./bootstrap-vcpkg.sh && cd -
+export VCPKG_ROOT="$(pwd)/external/microsoft/vcpkg}"
make all
# or
0 commit comments