mirror of https://github.com/axmolengine/axmol.git
18 lines
353 B
Bash
18 lines
353 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Invoked build.xml, overriding the lolua++ property
|
||
|
|
||
|
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||
|
TOLUA=`which tolua++`
|
||
|
if [ -z "${TOLUA}" ]; then
|
||
|
TOLUA=`which tolua++5.1`
|
||
|
fi
|
||
|
|
||
|
if [ -z "${TOLUA}" ]; then
|
||
|
echo "Unable to find tolua++ (or tolua++5.1) in your PATH."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd ${SCRIPT_DIR}
|
||
|
ant -Dtolua++=${TOLUA}
|