Re: An installer for Qt apps
Quote:
... to use an installer for the app to make as platform independent as possible?
Qt source code is platform independent. The shared libraries / DLLs that implement Qt are not. Neither is your executable. All of that depends on the system you use to compile and link your app, as well as the version of Qt you use.
You should start here to learn about deployment and follow the links for the specific OS you want to deploy to.
I believe Qt might come with a tool to create installers. I don't know; I build installers for Windows using NSIS.
Re: An installer for Qt apps
Thank you for your answer.
What about this link:
http://doc.qt.io/qtinstallerframewor...g-started.html
In bottom, in Setting up Qt Installer Framework, number 1 orders to have Qt Installer Framework source code. I downloaded it from here:
https://download.qt.io/official_rele...amework/2.0.1/. (qt-installer-framework-opensource-2.0.1-src.zip)
Now I don't understand the next instruction there :(
It says:
2- Build the tools by running the "qmake" from the static Qt, followed by "make" or "nmake".
My question is, first what does it mean?
And from what path?
I don't know how to do it:(