1 Star 0 Fork 249

debuglife / CrossApp

forked from 9miao.com / CrossApp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
make-all-linux-project.sh 716 Bytes
一键复制 编辑 原始数据 按行查看 历史
栗元峰 提交于 2014-05-15 18:28 . no message
#!/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
export MAKEFLAGS=-j10
#make PLATFORM=linux DEBUG=1 clean
#make PLATFORM=linux DEBUG=0 clean
make PLATFORM=linux DEBUG=1 all
make PLATFORM=linux DEBUG=0 all
1
https://gitee.com/zanpen2000/CrossApp.git
git@gitee.com:zanpen2000/CrossApp.git
zanpen2000
CrossApp
CrossApp
master

搜索帮助