mirror of https://github.com/axmolengine/axmol.git
26 lines
531 B
Bash
Executable File
26 lines
531 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Generate JS bindings for Cocos2D-X
|
|
# ... using Android NDK system headers
|
|
|
|
# Dependencies (see ../../../tojs/genbindings.sh
|
|
# ... for the defaults used if the environment is not customized)
|
|
#
|
|
# * $PYTHON_BIN
|
|
# * $CLANG_ROOT
|
|
# * $NDK_ROOT
|
|
|
|
compileresult=0
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
COCOS2DX_ROOT="$DIR"/../../../../ /bin/bash ../../../tojs/genbindings.sh
|
|
|
|
compileresult=$[$compileresult+$?]
|
|
|
|
# return the compileresult.
|
|
if [ $compileresult != 0 ]; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|