From 202c5d5224482f1da3482139084598d3153e8272 Mon Sep 17 00:00:00 2001 From: Diego Iastrubni Date: Sat, 30 Nov 2024 18:42:10 +0200 Subject: [PATCH] fix #2 --- .github/workflows/build.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b4e53c0..88639e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -83,11 +83,7 @@ jobs: working-directory: ${{ github.workspace }} id: runcmake run: | - cmake -B "build/${{ matrix.config.build_dir }}" \ - -G "${{ matrix.generators }}" \ - -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" \ - -DCMAKE_C_COMPILER=${{ matrix.config.cc }} \ - -DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} + cmake -B "build/${{ matrix.config.build_dir }}" -G "${{ matrix.generators }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" -DCMAKE_C_COMPILER=${{ matrix.config.cc }} -DCMAKE_CXX_COMPILER=${{ matrix.config.cxx }} - name: Build working-directory: ${{ github.workspace }} id: runcmakebuild