mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
10 lines
260 B
Bash
Executable File
10 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
rm -rf godot
|
|
git clone --depth 1 https://github.com/godotengine/godot.git -b 3.4.4-stable
|
|
cp -r .idea godot
|
|
cp custom.py godot
|
|
cp -r ../spine-cpp/spine-cpp spine_godot
|
|
pushd godot
|
|
scons compiledb=yes custom_modules="../spine_godot" -j16
|
|
popd |