Questions tagged [qt-installer]

The Qt Installer Framework provides a set of tools and utilities to create installers for the supported desktop Qt platforms: Linux, Microsoft Windows, and Mac OS X.

More information is available here

154 questions
6
votes
1 answer

Can Qt Installer Framework return a failure exit code?

I want to abort a Qt Installer Framework process, which can be done in multiple ways (follow the examples Qt provides for this, or throw an uncaught exception, or just inject an invalid command to cause a hard crash...). But no matter what, it seems…
BuvinJ
  • 10,221
  • 5
  • 83
  • 96
6
votes
2 answers

Qt 5.5 and Qt Installer Framework 2.0.1: Logo is not displayed despite being present in config.xml

I have written an installer for my application using the precompiled Qt Installer Framework binaries, version 2.0.1. However, the Installer window will not display any of my logos in any of the possible ways. The logo in question is named…
Maxim Blinov
  • 886
  • 9
  • 33
6
votes
3 answers

Create Linux install for Qt application

I just made a great program with Qt Creator. I'm very pleased with myself. How do I move it from my desktop to my laptop? So, the best way would be an installer right? And for Ubuntu, that's a debian package right? How do I do that? Has someone…
Michael
  • 61
  • 1
  • 2
5
votes
2 answers

Logging console output using Qt Installer Framework scripting

I added some console.log("xxxxxx") via component / controller scripting to my installer. ie. function Controller() { console.log("OS: " + systemInfo.productType); } How can I view the console log during the running of the installer?
Vincent
  • 103
  • 4
5
votes
1 answer

Qt Installer Framework Uninstaller

Is there any script or example of Qt installer framework for "Un-installer"? I want to remove some folders using the maintenance tool.
5
votes
3 answers

Qt Installer framework component installation location

I've created an installer package based on the Qt installer framework with multiple components. I needed to install each component in the appropriate directory. Is it possible to specify the target directory for the individual component? I am…
Rustem
  • 326
  • 2
  • 10
4
votes
1 answer

Qt installer scripting API: Can't select latest Qt version in online installer

A recent update to the metadata pulled by the Qt online installer has made some significant changes which have broken my installation script for Windows CI/CD. I've solved one issue (bypassing the statistics collection screen - see …
Joshua Wade
  • 4,755
  • 2
  • 24
  • 44
4
votes
0 answers

QWebEngineView crashes on Windows release builds as it can't find the required resource files

I am currently developing an application for Windows using Qt 5.9 that displays some local HTML files inside using a QWebEngineView instance. The code is rather simple, and I don't think it is relevant to the issue at hand: QWebEngineView *webView =…
martinarroyo
  • 9,389
  • 3
  • 38
  • 75
4
votes
3 answers

Qt Installer, overwrite previous version

I am using the latest Qt Installer version 2.0.3 I have created an installer for my app, but when I try to install it I get the following error message: "The folder you selected already exists and contains an installation. Chose different target for…
Jero Lopez
  • 398
  • 1
  • 7
  • 18
4
votes
1 answer

Qt not installed correctly

I've installed the following components for qt which were selected as default for me by the app. But I don't get the following screen when creating a qt-project for c++ GUI application: But get this: The list of qt-package I've installed…
Anish Silwal
  • 186
  • 1
  • 1
  • 10
3
votes
1 answer

Qt Installer with background picture

I'm elaborating the installer for my application using Qt Installer Framework. I would like to show a picture on the background so I set Background tag as indicated on https://doc.qt.io/qtinstallerframework/ifw-globalconfig.html and set WizardStyle…
KcFnMi
  • 5,516
  • 10
  • 62
  • 136
3
votes
1 answer

Qt Installer Framework not registering file type

I am trying to use Qt Installer Framework (version 3.1 in windows) to create an installer of my package. The package that I am using for testing is an image viewer that can load a custom file format: .cjpg (which is essentially the same as jpg but…
apalomer
  • 1,895
  • 14
  • 36
3
votes
0 answers

QT Installer Framework: Change WizardStyle runtime

I am writing QT application for software installer using QT Installer Framework. In config file i specify WizardStyle as "Modern" but in application i am asking user to choose Installer Wizard style which can be Clssic, Aero etc... So if user select…
Kiran Raut
  • 51
  • 4
3
votes
0 answers

Qt installer framework: translating config.xml attributes

You can translate attributes of package.xml like: Miam-Player is the main program. It is required and cannot be unselected. Miam-Player est le programme principal. Il est…
Desst
  • 41
  • 1
3
votes
2 answers

How to run an executable file in Qt Installer Framework?

I have an executable file C:\CDM21226_Setup.exe which i want to run through Qt Installer Framework (QtIFW). Note that CDM21226_Setup.exe are the drivers not the application which i am going to install. I want to install the drivers through the…
Shuji
  • 624
  • 1
  • 8
  • 24
1
2
3
10 11