We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0038d9b commit b529b0dCopy full SHA for b529b0d
.github/workflows/release.yml
@@ -125,7 +125,14 @@ jobs:
125
with:
126
submodules: recursive
127
- name: Configure
128
- run: cmake -S . -B build -G "Visual Studio 17 2022" -A "x64" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=ON
+ run: |
129
+ cmake -S . -B build -G "Visual Studio 17 2022" -A "x64" `
130
+ -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake" `
131
+ -DVCPKG_TARGET_TRIPLET=x64-windows `
132
+ -DCMAKE_BUILD_TYPE=Release `
133
+ -DCMAKE_INSTALL_PREFIX=install `
134
+ -DBUILD_TESTING=OFF `
135
+ -DBUILD_SHARED_LIBS=ON
136
- name: Build & Install
137
run: cmake --build build --config Release --parallel --target INSTALL
138
- name: Package
0 commit comments