From d1300c491ca50962b5ba4d5b7d5a56b34b9e99ad Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 18 Apr 2024 00:08:36 +0200 Subject: [PATCH] Fix CMake + MSVC. --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b3566f4..17f12d7d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,27 +30,27 @@ jobs: - name: Profiler GUI run: | cmake -B profiler/build -S profiler -DCMAKE_BUILD_TYPE=Release - cmake --build profiler/build --parallel + cmake --build profiler/build --parallel --config Release - name: Update utility run: | cmake -B update/build -S update -DCMAKE_BUILD_TYPE=Release - cmake --build update/build --parallel + cmake --build update/build --parallel --config Release - name: Capture utility run: | cmake -B capture/build -S capture -DCMAKE_BUILD_TYPE=Release - cmake --build capture/build --parallel + cmake --build capture/build --parallel --config Release - name: Csvexport utility run: | cmake -B csvexport/build -S csvexport -DCMAKE_BUILD_TYPE=Release - cmake --build csvexport/build --parallel + cmake --build csvexport/build --parallel --config Release - name: Import-chrome utility run: | cmake -B import-chrome/build -S import-chrome -DCMAKE_BUILD_TYPE=Release - cmake --build import-chrome/build --parallel + cmake --build import-chrome/build --parallel --config Release - name: Import-fuchsia utility run: | cmake -B import-fuchsia/build -S import-fuchsia -DCMAKE_BUILD_TYPE=Release - cmake --build import-fuchsia/build --parallel + cmake --build import-fuchsia/build --parallel --config Release - if: ${{ !startsWith(matrix.os, 'windows') }} name: Library run: meson setup -Dprefix=$GITHUB_WORKSPACE/bin/lib build && meson compile -C build && meson install -C build