mirror of https://github.com/axmolengine/axmol.git
13 lines
258 B
Bash
13 lines
258 B
Bash
|
#put xctool.sh into your PATH
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
COCOS2DX_ROOT="$DIR"/../../../..
|
||
|
cd ${COCOS2DX_ROOT}
|
||
|
mkdir linux-build
|
||
|
cd linux-build
|
||
|
cmake ..
|
||
|
if [ ! $? = 0 ]; then
|
||
|
echo "cmake generate error"
|
||
|
exit 1
|
||
|
fi
|
||
|
make -j4
|