QT工程安装包创建流程

@TOC

QT安装包建立

准备工具

  • qt-installer-framework 下载地址
    在这里插入图片描述

安装完成后,添加环境变量

在这里插入图片描述

添加到Qt Creator帮助文档

打开 Qt Creator,选择【工具】–>【选项】–>【帮助】–>【文档】–>【添加】
选择Qt IFW安装目录doc下的ifw.qch文件。

创建安装包工程

创建工程目录

mkdir -p AidTool_Installer
mkdir -p AidTool_Installer/config
mkdir -p AidTool_Installer/packages
mkdir -p AidTool_Installer/packages/com.man.ifw
mkdir -p AidTool_Installer/packages/data
mkdir -p AidTool_Installer/packages/meta
.
├── AidTool_Installer
   ├── AidTool.exe
   ├── config
   │   └── config.xml
   └── packages
       └── com.man.ifw
           ├── data
           │   ├── AidTool.exe
           │   ├── D3Dcompiler_47.dll
           │   ├── Qt5Core.dll
           │   ├── Qt5Gui.dll
           │   ├── Qt5SerialPort.dll
           │   ├── Qt5Svg.dll
           │   ├── Qt5Widgets.dll
           │   ├── iconengines
           │   │   └── qsvgicon.dll
           │   ├── imageformats
           │   │   ├── qgif.dll
           │   │   ├── qicns.dll
           │   │   ├── qico.dll
           │   │   ├── qjpeg.dll
           │   │   ├── qsvg.dll
           │   │   ├── qtga.dll
           │   │   ├── qtiff.dll
           │   │   ├── qwbmp.dll
           │   │   └── qwebp.dll
           │   ├── libEGL.dll
           │   ├── libGLESV2.dll
           │   ├── libgcc_s_seh-1.dll
           │   ├── libstdc++-6.dll
           │   ├── libwinpthread-1.dll
           │   ├── opengl32sw.dll
           │   ├── platforms
           │   │   └── qwindows.dll
           │   ├── startmenu
           │   │   ├── README
           │   │   ├── config
           │   │   │   └── config.xml
           │   │   ├── packages
           │   │   │   └── org.qtproject.ifw.example
           │   │   │       ├── data
           │   │   │       │   └── README.txt
           │   │   │       └── meta
           │   │   │           ├── installscript.qs
           │   │   │           └── package.xml
           │   │   ├── startmenu.pro
           │   │   └── startmenu.pro.user
           │   ├── styles
           │   │   └── qwindowsvistastyle.dll
           │   └── translations
           │       ├── qt_ar.qm
           │       ├── qt_bg.qm
           │       ├── qt_ca.qm
           │       ├── qt_cs.qm
           │       ├── qt_da.qm
           │       ├── qt_de.qm
           │       ├── qt_en.qm
           │       ├── qt_es.qm
           │       ├── qt_fi.qm
           │       ├── qt_fr.qm
           │       ├── qt_gd.qm
           │       ├── qt_he.qm
           │       ├── qt_hu.qm
           │       ├── qt_it.qm
           │       ├── qt_ja.qm
           │       ├── qt_ko.qm
           │       ├── qt_lv.qm
           │       ├── qt_pl.qm
           │       ├── qt_ru.qm
           │       ├── qt_sk.qm
           │       ├── qt_uk.qm
           │       └── qt_zh_TW.qm
           └── meta
               ├── installscript.qs
               └── package.xml

创建配置文件

在config目录下创建名为config.xml的文件,文件内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<Installer>
  <Name>AidTool Installer</Name>
  <Version>1.0.0</Version>
  <Title>AidTool Installer</Title>
  <Publisher>man</Publisher>
  <StartMenuDir>AidTool</StartMenuDir>
  <TargetDir>@HomeDir@/AidTool</TargetDir>
</Installer>

配置文件指定了安装界面上显示的如下信息:

  • < Title > 标题栏上安装程序名称
  • < Name > 显示在安装页面上应用程序的名称
  • < Version > 应用程序的版本号
  • < Publisher > 软件发布者
  • < StartMenuDir > 添加到开始菜单默认程序组名称
  • < TargetDir > 应用程序的安装目录

创建包信息文件

packages目录下com.man.ifw/meta目录下,package.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<Package>
    <DisplayName>AidTool</DisplayName>
    <Description>Aid Device Tool</Description>
    <Version>1.0.0-1</Version>
    <ReleaseDate>2020-12-29</ReleaseDate>
    <Default>true</Default>
    <Script>installscript.qs</Script>
    <Licenses>
        <License name="Beer Public License Agreement" file="license.txt" />
    </Licenses>
 </Package>

各个元素分别表示如下含义:

  • < DisplayName > 指定组件的名称
  • < Description > 显示选中组件的描述信息
  • < Version > 组件的版本号信息,可用作后期版本更新
  • < ReleaseDate > 组件发布的日期
  • < Default > 安装过程中组件是否默认选中,true表示默认选中,false默认补选中。
  • < Script > JavaScript文件名,执行一些个性化的安装操作
  • < Licenses > 添加许可文件,如果没有可以删除此段

license.txt文件创建

在这里插入图片描述

创建脚本文件

packages目录下com.man.ifw/meta目录下installscript.qs

/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the FOO module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/

function Component()
{
    gui.pageWidgetByObjectName("LicenseAgreementPage").entered.connect(changeLicenseLabels);
}


changeLicenseLabels = function()
{
    page = gui.pageWidgetByObjectName("LicenseAgreementPage");
    page.AcceptLicenseLabel.setText("Yes I do!");
    page.RejectLicenseLabel.setText("No I don't!");
}


Component.prototype.createOperations = function()
{
    //调用默认实现
    component.createOperations();
    
    if (systemInfo.productType === "windows") {
        //添加桌面快捷方式
        component.addOperation("CreateShortcut",
                            "@TargetDir@/AidTool.exe",
                            "@DesktopDir@/AidTool.lnk",
                            "workingDirectory=@TargetDir@");

        //添加开始菜单快捷方式
        component.addOperation("CreateShortcut",
                            "@TargetDir@/AidTool.exe",
                            "@StartMenuDir@/AidTool.lnk",
                            "workingDirectory=@TargetDir@");
    }
}

准备库文件

打开Powershell工具

cd build生成的xxx.exe目录下
#复制xx.exe文件到data目录下
cp ./xxx.exe AidTool_Installer/packages/data
cd AidTool_Installer/packages/data
C:\Qt\Qt5.13.2\5.13.2\mingw73_64\bin\windeployqt.exe AidTool.exe
#windeployqt.exe 工具依据编译工程选择的工具链确定
在这里插入图片描述

生成安装包

cd AidTool_Installer
binarycreator.exe -c .\config\config.xml -p .\packages AidTool -v

在这里插入图片描述

参考

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容