From c0fb77772b6f7f0f41cfbaa40977f1295c801fd2 Mon Sep 17 00:00:00 2001 From: ak5k <42914711+ak5k@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:28:52 +0200 Subject: [PATCH] Fix CMake command in multi-platform workflow --- .github/workflows/cmake-multi-platform.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index d94084f..a716062 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -98,9 +98,10 @@ jobs: cmake -B ${{ github.workspace }} ^ -G "Ninja" ^ -DCMAKE_BUILD_TYPE=${{ matrix.win_build_type }} ^ - -S ${{ github.workspace }}" ^ + -S ${{ github.workspace }} ^ -DVCPKG_TARGET_TRIPLET=${{matrix.arch}}-windows-static ^ - -DCMAKE_TOOLCHAIN_FILE=%VCPKG_INSTALLATION_ROOT%\scripts\buildsystems\vcpkg.cmake + -DCMAKE_TOOLCHAIN_FILE=%VCPKG_INSTALLATION_ROOT%\scripts\buildsystems\vcpkg.cmake + cmake --build ${{ github.workspace }} --config ${{ matrix.win_build_type }}