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 ?
iswaryasenthilkumar, it seems that you have no idea about programming and how the human readable code like C++ is converted to the executable file. Start from the beginning. For now it seems that you are refusing to get the basic information required to write the simple program. Please visit your nearest library, or use google, to find the book about programming in C++, read it, understand it, test your knowledge (by writing programs like "hello world") and then you can start thinking about more complex projects. It's going to take you a lot of time to learn those things, but if you don't want to spend this time on learning programming - then you have to think about different hobby. This thread is already 1 week old which is enough to get the basic understanding about some basic programming aspects if you'd just wanted to.
I would like to be a "Guru"
Useful hints (try them before asking):
- Use Qt Assistant
- Search the forum
If you haven't found solution yet then create new topic with smart question.
Bookmarks