File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,14 @@ jobs:
125125 with :
126126 submodules : recursive
127127 - 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
128+ 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
129136 - name : Build & Install
130137 run : cmake --build build --config Release --parallel --target INSTALL
131138 - name : Package
You can’t perform that action at this time.
0 commit comments