Add plain Love file module

This commit is contained in:
Antonin Décimo
2014-08-19 11:09:46 +02:00
parent a0c572ee0e
commit 3c734d62d1
2 changed files with 19 additions and 2 deletions

View File

@@ -14,12 +14,12 @@ LOVE_VERSION=0.9.1
## - a colon ":" if it requires an argument ## - a colon ":" if it requires an argument
## SCRIPT_ARGS="a; osname:" ## SCRIPT_ARGS="a; osname:"
SCRIPT_ARGS="" SCRIPT_ARGS="l; "
## Add a short summary of your platform script here ## Add a short summary of your platform script here
## SHORT_HELP=" -a Create an executable for a ## SHORT_HELP=" -a Create an executable for a
## --osname Create an executable for osname" ## --osname Create an executable for osname"
SHORT_HELP="" SHORT_HELP=" -l Create a plain Love file"
## Don't forget to source the corresponding file at the bottom of the script ! ## Don't forget to source the corresponding file at the bottom of the script !
@@ -175,5 +175,15 @@ do
## OSNAME=$OPTARG ## OSNAME=$OPTARG
## source "$PLATFORMS_DIR/os.sh" ## source "$PLATFORMS_DIR/os.sh"
## fi ## fi
if [ "$OPTOPT" = "l" ]; then
source $PLATFORMS_DIR/love.sh
fi
done done
# Fallback if nothing is specified
init_module "Love"
create_love_file
exit_module

7
scripts/love.sh Normal file
View File

@@ -0,0 +1,7 @@
# Love
init_module "Love"
create_love_file
exit_module