Skip to content

Commit

Permalink
Fixed MoltenVk link issue; updated GHA MacOS image to macos-12
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMostDiligent committed Dec 2, 2022
1 parent 62756e2 commit 66c51db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-apple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
precheks:
runs-on: macos-latest
runs-on: macos-12
name: MacOS -> Pre-Checks

steps:
Expand All @@ -19,7 +19,7 @@ jobs:

build:
needs: precheks
runs-on: macos-latest
runs-on: macos-12

strategy:
matrix:
Expand Down
3 changes: 2 additions & 1 deletion Graphics/GraphicsEngineVulkan/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,9 @@ elseif(PLATFORM_IOS OR PLATFORM_TVOS)
find_library(METAL_LIBRARY Metal)
find_library(QUARTZ_CORE QuartzCore)
find_library(UI_KIT UIKit)
find_library(IO_SURFACE IOSurface)
# Note that volk may be defined by external CMake, but we don't use it on iOS/tvOS
list(APPEND PRIVATE_DEPENDENCIES ${MOLTENVK_LIBRARY} ${CORE_GRAPHICS} ${METAL_LIBRARY} ${QUARTZ_CORE} ${UI_KIT})
list(APPEND PRIVATE_DEPENDENCIES ${MOLTENVK_LIBRARY} ${CORE_GRAPHICS} ${METAL_LIBRARY} ${QUARTZ_CORE} ${UI_KIT} ${IO_SURFACE})
elseif(PLATFORM_LINUX)
list(APPEND PRIVATE_DEPENDENCIES volk::volk_headers)
elseif(PLATFORM_ANDROID)
Expand Down

0 comments on commit 66c51db

Please sign in to comment.