mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
Diffs= 25d423274 Initial file moves and renames (#7951) Co-authored-by: rivessamr <suki@rive.app>
23 lines
569 B
Bash
Executable File
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"
|