am having QT Application i need to convert or want to create new exe file application in qt can any one give me suggestion for this
Thanks in advance![]()
am having QT Application i need to convert or want to create new exe file application in qt can any one give me suggestion for this
Thanks in advance![]()
Just create the new application like you created the first one.
Cheers,
_
You have to be more descriptive about your problems. What do you mean by "how can I see my exe file"?
A set of C++ source files and supporting files, right?
Yes, that will helpi have to convert this Qt program to exe file for testing
You compile the C++ source code with your compiler and Qt utilities. If this is a third party package then it will generally come with instructions for doing just this. The general pattern is:how can i convert my qt program to exe file?
- Run qmake (or CMake if that is being used)
- Run make
- Run program
- Profit
iswaryasenthilkumar (29th April 2015)
Bookmarks