1 Star 0 Fork 0

dou/YUView

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deployment_linux.sh 622 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
if (( $# == 1 ))
then
QT_DIR=/usr
else
if (( $# == 2 ))
then
QT_DIR=$2
else
echo "Usage: `basename $0` {build directory} {Qt directory}"
exit 4
fi
fi
# find version
VERSION=$(git describe --abbrev=0 --tags)
DIRNAME=YUView_$VERSION
BUILD_DIR=$1
SRC_DIR=$(pwd)
PRO_FILE=$SRC_DIR/YUView.pro
# run qmake
cd $BUILD_DIR
$QT_DIR/bin/qmake $PRO_FILE -r -spec linux-g++-64
# run make
make clean -w
make -w
# copy files
cd $SRC_DIR
mkdir $DIRNAME
cp $BUILD_DIR/YUView $DIRNAME
# compress (tar) the directory
tar czf ../$DIRNAME.tgz $DIRNAME/
# clean up
rm -rf $DIRNAME/
cd $BUILD_DIR
make clean -w
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hengq/YUView.git
git@gitee.com:hengq/YUView.git
hengq
YUView
YUView
TikzExport

搜索帮助

0d507c66 1850385 C8b1a773 1850385