1 Star 0 Fork 248

lindeer/CrossApp

forked from 9miao.com/CrossApp 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
make-all-linux-project.sh 716 Bytes
Copy Edit Raw Blame History
栗元峰 authored 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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lindeer/CrossApp.git
git@gitee.com:lindeer/CrossApp.git
lindeer
CrossApp
CrossApp
master

Search