Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create .exe file for my Qt based app

Tags:

executable

qt

i wrote a program in Qt-Creator 1.3.1 and Qt 4.6.2 and realy dont figure out how to create a simple .exe file for the program i just wrote... i rather do it with the Qt-Creator if it's possible

like image 265
kaycee Avatar asked May 23 '10 12:05

kaycee


1 Answers

In Qt Creator, when you build (Ctrl+B) your project, it always creates a .exe that is executed when you run the app from Qt Creator (Ctrl+R or the big play button).

If you want to find this .exe, you should look in the folder where your .pro (the project file) is located in the folder debug (or release depending on your build configuration).

like image 194
Live Avatar answered Nov 15 '22 09:11

Live