17 lines
273 B
Bash
Executable File
17 lines
273 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
|
|
CONFIG=release
|
|
case "$*" in
|
|
(*--debug*) CONFIG=debug;;
|
|
esac
|
|
|
|
EXEC=$DIR/../build/xenia/$CONFIG/xenia-run
|
|
|
|
if [ ! -f "$EXEC" ]; then
|
|
python $DIR/../xenia-build.py build --$CONFIG
|
|
fi
|
|
|
|
$EXEC --abort_before_entry=true "$@"
|