From 72b74a3b6458c014f84cc45f022d178245c3f17f Mon Sep 17 00:00:00 2001 From: ado Date: Sat, 29 Jul 2023 15:35:29 +0200 Subject: [PATCH] Fix msvc ci configure step --- .github/workflows/win-msvc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/win-msvc.yml b/.github/workflows/win-msvc.yml index 7d9e520..767d026 100644 --- a/.github/workflows/win-msvc.yml +++ b/.github/workflows/win-msvc.yml @@ -51,8 +51,8 @@ jobs: - name: Configure run: >- - cmake -S test -B build -G "${{matrix.config.vs}}" - -A ${{matrix.platform}} --config ${{matrix.build}} + cmake -S test -B build --config ${{matrix.build} + -G "${{matrix.config.vs}}" -A ${{matrix.platform}} - name: Build run: cmake --build build -j ${{steps.cores.outputs.count}}