I want to convert a Qt project into .exe file so that I can run the application in any other Windows PC. How can I convert? I use MinGW compiler for Qt.
Asked
Active
Viewed 856 times
0
-
Possible duplicate of http://stackoverflow.com/questions/22185974/deploying-qt-5-app-on-windows – Ilya Mar 19 '16 at 09:28
1 Answers
1
What you want to do is deploy your application. Qt projects generate a .exe
that you can run locally because you've got the Qt libraries, so you need to distribute those to your end users. There's a good guide on the Qt Docs on how to do this, and examples of the windeployqt
tool that simplifies the process.

Nicholas Smith
- 11,642
- 6
- 37
- 55