Skip to content

Commit

Permalink
Use Ninja and Xcode build generators on Linux and macOS respectively
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-nsk committed Aug 7, 2024
1 parent 336f8bc commit 8d64845
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ jobs:
include:
- name: Build - Ubuntu
runs-on: ubuntu-latest
cmake-args: -G Ninja
compiler: clang
cxx-compiler: clang++

- name: Build - macOS
runs-on: macos-latest
cmake-args: -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13
cmake-args: -G Xcode -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13

- name: Build - Windows
runs-on: windows-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
- name: Release - Ubuntu
short-name: lin64
runs-on: ubuntu-latest
cmake-args: -D CMAKE_EXE_LINKER_FLAGS=-static
cmake-args: -G Ninja -D CMAKE_EXE_LINKER_FLAGS=-static
compiler: clang
cxx-compiler: clang++

- name: Release - macOS
short-name: mac64
runs-on: macos-latest
cmake-args: -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13
cmake-args: -G Xcode -D CMAKE_OSX_DEPLOYMENT_TARGET=10.13

- name: Release - Windows
short-name: win64
Expand Down

0 comments on commit 8d64845

Please sign in to comment.