Skip to content

Commit 5c623a2

Browse files
committed
fix workflows
1 parent db0dca8 commit 5c623a2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636

3737
- name: Configure & build library
3838
run: |
39-
cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg\scripts\buildsystems\vcpkg.cmake -DCMAKE_INSTALL_PREFIX=local -S . -B build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
39+
cmake -DCMAKE_TOOLCHAIN_FILE="vcpkg\scripts\buildsystems\vcpkg.cmake" -DCMAKE_INSTALL_PREFIX="local" -S . -B build -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
4040
cmake --build build --config Release --target INSTALL
4141
4242
- name: Configure & build tests
4343
run: |
44-
cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg\scripts\buildsystems\vcpkg.cmake -DCMAKE_PREFIX_PATH=local -DTEST_INSTALLED_VERSION=1 -S test -B build-test -G "Visual Studio 17 2022" -A x64
44+
cmake -DCMAKE_TOOLCHAIN_FILE="vcpkg\scripts\buildsystems\vcpkg.cmake" -DCMAKE_PREFIX_PATH="local" -DTEST_INSTALLED_VERSION=1 -S test -B build-test -G "Visual Studio 17 2022" -A x64
4545
cmake --build build-test --config Debug
4646
4747
- name: Run tests

0 commit comments

Comments
 (0)