Files
rive-cpp/renderer/make_moltenvk.sh
rivessamr 1b24bf9f89 Initial file moves and renames
Diffs=
25d423274 Initial file moves and renames (#7951)

Co-authored-by: rivessamr <suki@rive.app>
2024-08-27 22:26:30 +00:00

23 lines
569 B
Bash
Executable File

#!/bin/sh
set -e
mkdir -p dependencies
cd dependencies
if [ ! -d MoltenVK ]; then
echo "Cloning MoltenVK..."
git clone https://github.com/rive-app/MoltenVK.git
else
echo "Already have MoltenVK..."
fi
cd MoltenVK
echo "Fetching dependencies..."
./fetchDependencies --macos
echo "Building branch with experimental support for VK_EXT_rasterization_order_attachment_access..."
git checkout origin/VK_EXT_rasterization_order_attachment_access
xcodebuild -project MoltenVKPackaging.xcodeproj -scheme "MoltenVK Package (macOS only)" -configuration "Release"