Liam Martens
Liam Martens

Reputation: 741

Create .msi installer with Qt installer framework

I've been looking into the Qt installer framework but when you create a setup using this tool it is a regular setup though I was wondering whether it would be possible to create an msi setup to be able to install a Qt program network wide.

I've looked at the installer framework docs but was unable to find anything about this so far.

Upvotes: 2

Views: 2880

Answers (2)

Stein Åsmul
Stein Åsmul

Reputation: 42236

You have got a proper answer, maybe I'll add some further links for you. Before I do that I can verify that WiX can be used to make MSI installers for any type of Windows application.

There are also a few other tools available to make MSI files that you might want to look at depending on your needs - both open source (free) and commercial. Though WiX is very flexible and great when you have it set up, commercial tools can help you get an MSI created much quicker. Have a read below of the different tools and their pros and cons.


Below are a few links for you - I am a "linking monster" :-). If you pardon what looks like shameless self-promotion, it is really a guess as to what you could find useful to get your MSI file created:


And a few more peripheral links thrown in:

Upvotes: 3

Dina Bogdan
Dina Bogdan

Reputation: 4738

Qt installer framework doesn't provide creating of MSI installer. For MSIs you should use WiX for example.

Upvotes: 5

Related Questions