From 789cb7c8a2f705d94bd97b3d5b09856ad80cc3d9 Mon Sep 17 00:00:00 2001 From: Sakimotor Date: Mon, 3 Mar 2025 12:13:31 +0100 Subject: [PATCH] Update cmake-multi-platform.yml --- .github/workflows/cmake-multi-platform.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 6e0a98c..d2b8f9b 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -39,7 +39,7 @@ jobs: - name: Configure CMake (Linux) if: runner.os == 'Linux' run: > - cmake -B build + cmake -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} @@ -50,7 +50,7 @@ jobs: - name: Configure CMake (Windows) if: runner.os == 'Windows' run: > - cmake -B build + cmake -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}