1 Star 0 Fork 1

Sunshine_OS/Zmq-Sample

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
package.bat 1001 Bytes
一键复制 编辑 原始数据 按行查看 历史
echo "Step 0:设置编译环境"
set PATH=C:\Qt\Qt5.12.4\5.12.4\msvc2017_64\bin;%PATH%
set PATH=C:\Qt\Qt5.12.4\Tools\QtCreator\bin;%PATH%
set output=bin
@rem 本机VS编译脚本目录
@set vcvar_bat="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat"
@rem 发布服务器VS编译环境
@rem set vcvar_bat=C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvarsall.bat
@call %vcvar_bat% amd64
if exist %output% (
echo 输出目录%output%已存在,无需创建
) else (
md %output%
)
echo "Step 1:开始编译,输出到bin目录"
cd ./bin
@rem 清理bin目录
jom.exe clean
@rem 生成makefile文件
qmake.exe ../Zmq-Sample.pro -spec win32-msvc "CONFIG+=qtquickcompiler"
@rem 编译程序
jom.exe
echo "Step 2:加载程序所需的依赖文件"
cd release
windeployqt.exe Zmq-Sample.exe
@rem NSIS 打包
#cd ../../dist
#makensis -DSOURCE_PATH="..\bin\release" -DPRODUCT_VERSION="1.0.0" "shell.nsi"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Sunshine_OS/Zmq-Sample.git
git@gitee.com:Sunshine_OS/Zmq-Sample.git
Sunshine_OS
Zmq-Sample
Zmq-Sample
master

搜索帮助