本文主要是介绍使用windeployqt与inno setup实现windows下Qt程序发布打包,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、使用windeployqt拷贝依赖文件
在发布生成的exe程序时,需要复制一大堆dll,如果自己去复制dll,很可能丢三落四,导致exe在别的电脑里无法正常运行。
因此Qt官方开发环境里自带了一个工具:windeployqt.exe。
1、设置windeployqt.exe目录为环境变量
以本机Qt5.12.3,MSVC64位环境为例,
工具路径为D:\Qt\Qt5.13.0\5.13.0\msvc2017_64\bin,如下:
请找到与自己工程使用的编译器版本一致的目录下,并将该目录设置为环境变量;
以保证在cmd中可以直接输入windeployqt以找到windeployqt.exe。
2、执行依赖拷贝
工程在release模式编译后,假设生成PathTest.exe,
然后将PathTest.exe与工程中所有自己编写的依赖dll、图标等全部拷贝到D:/test。
然后在cmd中,进入test目录,如下:
cd /d D:\test
输入拷贝依赖命令,如下:
windeployqt PathTest.exe
正在拷贝中:
依赖拷贝结果:
这个例子比较简单,所以没什么多余文件。
此时,将此目录拷贝到其他没有装qt的电脑上,应该也是可以执行的。
如果不行,那么还要根据缺哪些dll,再进行排查添加。
在保证程序可以正常执行的情况下,进行下一步打包操作。
二、使用inno setup对程序进行打包
inno setup官网下载地址:
https://jrsoftware.org/isdl.php
任意选择一个链接进行下载。
inno setup工具使用比较简单,可以通过向导生成脚本,也可以直接编辑脚本;
然后对脚本进行编译,可以生成安装包exe。
下面讲解通过向导生成脚本
1、选择File->New,弹出向导对话框,如下:
2、选择Next,弹出应用信息对话框,如下:
根据如下含义,填入相应内容。
- Application name:软件名称,即软件在开始菜单中显示的名字
- Application version:软件版本号
- Application publisher:软件的出版商
- Application website:软件的网站
3、选择Next,弹出应用安装路径对话框,如下:
- Application destination base folder:软件安装路径,Program Files folder表示C:\Program Files (x86)。也可以自定义安装路径。
- Application folder name:软件安装目录名称,My App。
结合上面2个输入,表示应用程序默认安装到C:\Program Files (x86)\My App目录下。
4、选择Next,弹出选择程序文件对话框,如下:
分别添加主程序exe路径,以及主程序的资源、dll等其他依赖文件路径。
5、选择Next,勾选一些信息,一般默认,如下:
6、选择Next,选择license文件,安装前、后分别显示的信息文件,如下:
这里,没有,所以留空。
7、选择Next,选择安装模式,一般默认,如下:
8、选择Next,选择安装语言,一般默认,如下:
9、选择Next,打包编译设置,如下:
分别设置如下内容:
- 在哪个目录下生成安装包exe文件;
- 安装包文件的名称;
- 安装包文件的图标;
- 运行安装包时需要输入的密码。
10、选择Next,预处理器信息,一般默认,如下:
11、选择Next,完毕。选择Finish。
选择是,对当前脚本文件进行编译,并保存脚本文件。
生成的脚本文件内容如下:
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!#define MyAppName "My App"
#define MyAppVersion "1.5"
#define MyAppPublisher "My Company, Inc."
#define MyAppURL "http://www.example.com/"
#define MyAppExeName "PathTest.exe"[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{55AD3461-9F11-45C0-A74F-6BB8374A3268}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
OutputDir=D:\output
OutputBaseFilename=mysetup
Compression=lzma
SolidCompression=yes
WizardStyle=modern[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked[Files]
Source: "D:\test\PathTest.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "D:\test\translations\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "D:\test\Qt5Core.dll"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
编译完成
生成了mysetup.exe安装包
若对你有帮助,欢迎点赞、收藏、评论,你的支持就是我的最大动力!!!
同时,阿超为大家准备了丰富的学习资料,欢迎关注公众号“超哥学编程”,即可领取。
这篇关于使用windeployqt与inno setup实现windows下Qt程序发布打包的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!