mirror of https://github.com/axmolengine/axmol.git
60 lines
1.3 KiB
Bash
Executable File
60 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
TXTCOLOR_DEFAULT="\033[0;m"
|
|
TXTCOLOR_RED="\033[0;31m"
|
|
TXTCOLOR_GREEN="\033[0;32m"
|
|
|
|
COCOS2DX20_TRUNK=`pwd`/../../..
|
|
OUTPUT_DEBUG=$COCOS2DX20_TRUNK/lib/linux/debug/
|
|
OUTPUT_RELEASE=$COCOS2DX20_TRUNK/lib/linux/release/
|
|
|
|
check_make_result()
|
|
{
|
|
if [ 0 != $? ]; then
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
DEPENDS='libx11-dev'
|
|
DEPENDS+=' libxmu-dev'
|
|
DEPENDS+=' libglu1-mesa-dev'
|
|
DEPENDS+=' libgl2ps-dev'
|
|
DEPENDS+=' libxi-dev'
|
|
DEPENDS+=' libglfw-dev'
|
|
DEPENDS+=' g++'
|
|
DEPENDS+=' libzip-dev'
|
|
DEPENDS+=' libcurl4-gnutls-dev'
|
|
DEPENDS+=' libfontconfig1-dev'
|
|
DEPENDS+=' libsqlite3-dev'
|
|
DEPENDS+=' libglew-dev'
|
|
|
|
for i in $DEPENDS; do
|
|
PKG_OK=$(dpkg-query -W --showformat='${Status}\n' $i | grep "install ok installed")
|
|
echo Checking for $i: $PKG_OK
|
|
if [ "" == "$PKG_OK" ]; then
|
|
echo -e $TXTCOLOR_GREEN"No $i. Setting up $i, please enter your password:"$TXTCOLOR_DEFAULT
|
|
sudo apt-get --force-yes --yes install $i
|
|
fi
|
|
done
|
|
|
|
mkdir -p $OUTPUT_DEBUG
|
|
mkdir -p $OUTPUT_RELEASE
|
|
|
|
make -C $COCOS2DX20_TRUNK/external/Box2D/proj.linux DEBUG=1
|
|
check_make_result
|
|
|
|
make -C $COCOS2DX20_TRUNK/external/chipmunk/proj.linux DEBUG=1
|
|
check_make_result
|
|
|
|
make -C $COCOS2DX20_TRUNK/cocos2dx/proj.linux DEBUG=1
|
|
check_make_result
|
|
|
|
make -C $COCOS2DX20_TRUNK/CocosDenshion/proj.linux DEBUG=1
|
|
check_make_result
|
|
|
|
make -C $COCOS2DX20_TRUNK/extensions/proj.linux DEBUG=1
|
|
check_make_result
|
|
|
|
make DEBUG=1
|
|
check_make_result
|