From 494c29fb831da8e72c8114c88553203d155e243a Mon Sep 17 00:00:00 2001 From: Michael Nightingale <9887246+mnightingale@users.noreply.github.com> Date: Sat, 28 Oct 2023 14:21:59 +0100 Subject: [PATCH] windows changes --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index be53002..cc9717c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,14 +58,13 @@ jobs: if: matrix.os == 'macos-latest' run: | cmake -S rapidyenc -B rapidyenc/build \ - -D CMAKE_OSX_ARCHITECTURES="x86_64;arm64" \ - -D CMAKE_BUILD_TYPE=Release + -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" \ + -DCMAKE_BUILD_TYPE=Release cmake --build rapidyenc/build --target rapidyenc_static -j$(sysctl -n hw.ncpu) - name: Build windows if: matrix.os == 'windows-latest' run: | - cmake -S rapidyenc -B rapidyenc/build \ - -D CMAKE_BUILD_TYPE=Release - cmake --build rapidyenc/build --target rapidyenc_static -j$(sysctl -n hw.ncpu) + cmake -S rapidyenc -B rapidyenc/build + cmake --build rapidyenc/build --config Release --target rapidyenc_static -j$(sysctl -n hw.ncpu) ls -al rapidyenc/build