2022-07-29 10:52:40 +00:00
|
|
|
#!/usr/bin/env sh
|
2021-11-03 16:55:43 +00:00
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
|
|
|
|
|
|
|
# Download and install the Vulkan SDK.
|
2024-10-08 16:37:09 +00:00
|
|
|
curl -L "https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.zip" -o /tmp/vulkan-sdk.zip
|
|
|
|
unzip /tmp/vulkan-sdk.zip -d /tmp
|
|
|
|
/tmp/InstallVulkan.app/Contents/MacOS/InstallVulkan \
|
2021-11-03 16:55:43 +00:00
|
|
|
--accept-licenses --default-answer --confirm-command install
|
2023-01-03 09:16:30 +00:00
|
|
|
|
|
|
|
|
2024-10-08 16:37:09 +00:00
|
|
|
rm -rf /tmp/InstallVulkan.app
|
|
|
|
rm -f /tmp/vulkan-sdk.zip
|
2021-11-03 16:55:43 +00:00
|
|
|
|
|
|
|
echo 'Vulkan SDK installed successfully! You can now build Godot by running "scons".'
|