From 405db7da5124ba5501075e45f6a3563bdb7cc423 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Wed, 23 Oct 2024 12:03:08 +0200 Subject: [PATCH] [godot] Another fix for the template build script. See #2657 --- spine-godot/build/build-templates-v4.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spine-godot/build/build-templates-v4.sh b/spine-godot/build/build-templates-v4.sh index 0b54fc67a..2e803069a 100755 --- a/spine-godot/build/build-templates-v4.sh +++ b/spine-godot/build/build-templates-v4.sh @@ -186,10 +186,10 @@ elif [ "$platform" = "android" ]; then ./gradlew generateGodotTemplates popd else - scons platform=android target=template_release arch=arm32 --jobs=$cpus - scons platform=android target=template_release arch=arm64 generate_apk=yes --jobs=$cpus - scons platform=android target=template_debug arch=arm32 --jobs=$cpus - scons platform=android target=template_debug arch=arm64 generate_apk=yes --jobs=$cpus + scons platform=android target=template_release arch=arm32 custom_modules="../spine_godot" --jobs=$cpus + scons platform=android target=template_release arch=arm64 custom_modules="../spine_godot" generate_apk=yes --jobs=$cpus + scons platform=android target=template_debug arch=arm32 custom_modules="../spine_godot" --jobs=$cpus + scons platform=android target=template_debug arch=arm64 custom_modules="../spine_godot" generate_apk=yes --jobs=$cpus fi else echo "Unknown platform: $platform"