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)
iswaryasenthilkumar (29th April 2015)
after creation of my qt program i got
after compilation over i gotQt Code:
filename.pro filem=name.pro.user widget.cpp widget.h main.cpp widget.uiTo copy to clipboard, switch view to plain text mode
from this how can i find my exe file??Qt Code:
filename main.o makefile moc_widget.cpp moc_widget.o ui_widget.o widget.oTo copy to clipboard, switch view to plain text mode
iswaryasenthilkumar (29th April 2015)
i have sent this filename(exe) in mail for testing ,, but my tester mailed "The file u sent is not the executable file. it is some data file." i have attache my screen shots,,that diamond symbol is my exe file ??? still i dnt clear in my doubt plss help meScreenshot from 2015-05-05 15:14:00.jpg
Yes, the file named "digital" with the diamond-shaped icon is the executable file. For your information:
- the "*.o" files (a.k.a. the object files) are the files obtained by compiling the .cpp source files individually;
- the "moc_*.cpp" files are C++ source files generated by Qt (more precisely, the moc) that implement the runtime of Qt's object model for your QObject-derived classes;
- the "ui_*.h" files are C++ source headers generated by Qt Designer that implement the UI of the widgets created in the designer;
- "Makefile" is the platform-specific makefile generated by qmake to drive the build process.
What is the operating system of the tester ?
Bookmarks