mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-17 20:41:38 +08:00
11 lines
307 B
Bash
Executable File
11 lines
307 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.4-stable
|
|
cp custom.py godot
|
|
cp -r .idea godot
|
|
ln -s $(pwd)/spine_godot godot/modules/spine_godot
|
|
pushd godot
|
|
scons target=debug --jobs=$(sysctl -n hw.logicalcpu)
|
|
popd |