PDA

View Full Version : how to build the installation setup file of a qt project?



athulms
26th September 2011, 06:37
I am new to Qt. I want to build my project as an .exe file for instalation. How can i do it.

ChrisW67
26th September 2011, 09:08
With an install scripting tool like Nullsoft Installer (http://nsis.sourceforge.net/), Inno Setup (http://www.techsupportalert.com/content/best-free-setup-builder.htm#inno), Microsoft MSI files, ...

athulms
27th September 2011, 05:42
can u explain much more?

ChrisW67
27th September 2011, 06:42
Qt doesn't provide a deployment packaging tool for Windows so you have to use a third party tool. I have listed a couple of the commonly used ones. How you use them is a matter for their manuals and tutorials. In short:

Build and test your Qt project
Work out what you need to deploy: Deploying Qt Applications
Write a script for your installer generator of choice
Run your installer generator of choice to build your installer.
Profit