Skip to content

Commit

Permalink
Fix CMake command in multi-platform workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ak5k committed Jan 3, 2024
1 parent c56544f commit c0fb777
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit c0fb777

Please sign in to comment.