2021-09-28 11:27:11 +02:00

9 lines
257 B
Bash
Executable File

#!/bin/bash
set -e
rm -rf godot
cp -r ../spine-cpp/spine-cpp spine-godot
git clone --depth 1 https://github.com/godotengine/godot.git -b 3.3.3-stable
ln -s $(pwd)/spine_godot godot/modules/spine_godot
pushd godot
scons --jobs=$(sysctl -n hw.logicalcpu)
popd