mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 06:14:53 +08:00
Addtionally, updates the path needed for the installer to find the MoltenVK.xcframework as the path changed.
10 lines
468 B
Bash
Executable File
10 lines
468 B
Bash
Executable File
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
# Download and install the Vulkan SDK.
|
|
curl -L "https://sdk.lunarg.com/sdk/download/1.3.275.0/mac/vulkansdk-macos-1.3.275.0.dmg" -o /tmp/vulkan-sdk.dmg
|
|
hdiutil attach /tmp/vulkan-sdk.dmg -mountpoint /Volumes/vulkan-sdk
|
|
/Volumes/vulkan-sdk/InstallVulkan.app/Contents/MacOS/InstallVulkan \
|
|
--accept-licenses --default-answer --confirm-command install com.lunarg.vulkan.ios
|
|
# hdiutil detach /Volumes/vulkan-sdk
|
|
rm -f /tmp/vulkan-sdk.dmg |