Skip to content

Commit

Permalink
CMakeLists.txt fix MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasBFR committed Jan 20, 2024
1 parent 751249a commit 407571a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
fail-on-cache-miss: true
- name: Build Debug Target
run: |
cmake -DCMAKE_BUILD_TYPE=Debug -A=${{ matrix.arch }} -DCMAKE_BUILD_TYPE=Debug .
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }} -DCMAKE_BUILD_TYPE=Debug .
cmake --build .
- name: Build Release Target
run: |
cmake -DCMAKE_BUILD_TYPE=Debug -A=${{ matrix.arch }} -DCMAKE_BUILD_TYPE=Release .
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }} -DCMAKE_BUILD_TYPE=Release .
cmake --build .
- name: Prepare Artifacts
run: |
Expand Down

0 comments on commit 407571a

Please sign in to comment.