1 Star 0 Fork 0

大湿胸/Apworks

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.sh 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
#! /bin/bash
PARAM=''
PKGFILE='packages_v2_5_4878_35266.tar.gz'
PKGDIR='packages'
URL='http://apworks.org/wp-content/uploads/fx/'
if [ "$1" == 'Debug' ]
then
PARAM='/property:Configuration=MonoDebug'
elif [ "$1" == 'Release' ]
then
PARAM='/property:Configuration=MonoRelease'
else
printf "\n"
printf "Apworks Command-Line Build Tool v1.0\n\n"
printf "Usage:\n"
printf " build.sh Debug\n"
printf " Builds the Apworks with Debug configuration.\n\n"
printf " build.sh Release\n"
printf " Builds the Apworks with Release configuration.\n\n"
exit $?
fi
if [ ! -d $PKGDIR ]
then
printf "\nDownloading Dependencies...\n\n"
rm -rf $PKGFILE
wget $URL$PKGFILE
if [ $? -ne 0 ]
then
printf "Failed to get the Dependencies from network.\n"
exit $?
fi
tar -zxvf $PKGFILE
rm -rf $PKGFILE
fi
xbuild $PARAM
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iframework/Apworks.git
git@gitee.com:iframework/Apworks.git
iframework
Apworks
Apworks
master

搜索帮助