mirror of https://github.com/axmolengine/axmol.git
25 lines
617 B
Bash
Executable File
25 lines
617 B
Bash
Executable File
#!/bin/bash
|
|
# This script will perform a clean linux build of all targets in both
|
|
# debug and release configurations. It will also ensure that all the required
|
|
# packages are installed. For day-to-day work on the linux port it is
|
|
# faster/better to simply use 'make' either at the top level or in the subpject
|
|
# you are working on.
|
|
|
|
# Exit of first error.
|
|
set -e
|
|
|
|
# Change directory to the location of this script
|
|
cd $(dirname ${BASH_SOURCE[0]})
|
|
|
|
[ -z "$COCOS2DX_USEAPT" ] && COCOS2DX_USEAPT=true
|
|
|
|
if $COCOS2DX_USEAPT; then
|
|
./install-deps-linux.sh
|
|
fi
|
|
|
|
mkdir -p linux-build
|
|
cd linux-build
|
|
cmake ../..
|
|
make -j10
|
|
|