gamo-gd/profiles/justfile

20 lines
383 B
Plaintext
Raw Permalink Normal View History

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"