Skip to content

Commit

Permalink
Fix macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
shg8 committed Feb 17, 2024
1 parent 98b9dcc commit 4df3575
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
#
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-14]
build_type: [Release]
c_compiler: [gcc, clang, cl]
include:
Expand All @@ -35,7 +35,7 @@ jobs:
- os: ubuntu-latest
c_compiler: clang
cpp_compiler: clang++
- os: macos-latest
- os: macos-14
c_compiler: clang
cpp_compiler: clang++
exclude:
Expand All @@ -45,9 +45,9 @@ jobs:
c_compiler: clang
- os: ubuntu-latest
c_compiler: cl
- os: macos-latest
- os: macos-14
c_compiler: cl
- os: macos-latest
- os: macos-14
c_compiler: gcc

steps:
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ project(vulkan_splatting)
include(FetchContent)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++ -std=c++20")

find_package(Vulkan COMPONENTS glslangValidator)

Expand Down

0 comments on commit 4df3575

Please sign in to comment.