We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b143cb commit 877d72aCopy full SHA for 877d72a
1 file changed
.github/workflows/release.yml
@@ -62,7 +62,9 @@ jobs:
62
- name: Bootstrap vcpkg (Windows)
63
if: runner.os == 'Windows'
64
run: |
65
- git clone --depth=1 https://github.com/microsoft/vcpkg.git C:/vcpkg
+ if [ ! -d "C:/vcpkg/.git" ]; then
66
+ git clone --depth=1 https://github.com/microsoft/vcpkg.git C:/vcpkg
67
+ fi
68
C:/vcpkg/bootstrap-vcpkg.bat -disableMetrics
69
shell: bash
70
@@ -99,6 +101,7 @@ jobs:
99
101
-DGLFW_BUILD_DOCS=OFF \
100
102
-DGLFW_BUILD_TESTS=OFF \
103
-DGLFW_BUILD_EXAMPLES=OFF \
104
+ -DGLFW_BUILD_WAYLAND=OFF \
105
-DCMAKE_BUILD_TYPE=Release
106
cmake --build glfw-build
107
sudo cmake --install glfw-build
0 commit comments