20 lines
383 B
Plaintext
20 lines
383 B
Plaintext
|
|
set export
|
||
|
|
set dotenv-load
|
||
|
|
set quiet
|
||
|
|
|
||
|
|
build-minsize gdbuild="false":
|
||
|
|
#!/usr/bin/env bash
|
||
|
|
set -x
|
||
|
|
|
||
|
|
godot_path="."
|
||
|
|
if [ -n "$GODOT_PATH" ]; then
|
||
|
|
godot_path="$GODOT_PATH"
|
||
|
|
fi
|
||
|
|
|
||
|
|
gdbuild_profile=""
|
||
|
|
if [ "$gdbuild" == "true" ]; then
|
||
|
|
gdbuild_profile="build_profile="$(pwd)/minsize.gdbuild""
|
||
|
|
fi
|
||
|
|
|
||
|
|
scons -C "$godot_path" platform=linux profile="$(pwd)/minsize.py" "$gdbuild_profile"
|