vote up 4 vote down star

I just started using QT and noticed that it uses it's own make tool, qmake. Why does QT use it's own make tool?

Is there something special that prevents it from using a standard make tool?

Does qmake call gcc c++ compiler?

flag

5  
you misunderstand, qmake is more of a replacement for configure, not make – Evan Teran Sep 2 at 16:58

5 Answers

vote up 13 vote down check

Qt uses qmake to transparently support Qt's various addons, including "moc, the meta-object compiler" (which provides signals & slots), "uic, the ui compiler" (which creates header files from .ui designer files), "rcc, the resource compiler" (which compiles resources).

There's nothing to stop you using any build system you want. however, it's a lot more work. For example, you need to run "moc" over every header file that contains a class that has signals or slots. In general it's not recommended, especially for someone who's just starting to use Qt.

QMake does not call g++/gcc directly. Instead, qmake creates native make files on your current platform. Under linux it creates standard GNU make files, under windows it can generate visual studio make files, under Mac OS X it can generate XCode project files. You then invoke your native build system (either GNU make, or MS NMake, or xcodebuild or whatever), which will call your native compiler (g++/gcc or whatever).

link|flag
RE "QMake does not call g++/gcc directly": So QT doesn't use a standard C++ compiler like gcc? What compiler does it use? – Trevor Boyd Smith Sep 2 at 16:14
QT is cross platform; it can be compiled with many different compilers. – Sid Farkus Sep 2 at 16:20
1  
QMake DOES NOT call gcc directly. It creates platform-specific make files that you then invoke. These make files in turn call whatever compiler you seem to be using. – Thomi Sep 3 at 7:21
vote up 2 vote down

In order

a) because it does lot behind the scenes for you

b) yes, see a)

c) yes, it does call g++ (but can support other compilers if you have them)

link|flag
vote up 4 vote down

qmake is designed to be cross platform and flexible. It can compatible with Microsoft Visual Studio and Xcode.

You can find it all in the qmake Manual.

qmake generates a Makefile based on the information in a project file. Project files are created by the developer, and are usually simple, but more sophisticated project files can be created for complex projects. qmake contains additional features to support development with Qt, automatically including build rules for moc and uic. qmake can also generate projects for Microsoft Visual studio without requiring the developer to change the project file.

link|flag
1  
=> So it's not exactly a make tool, but a pre-make tool ;) – Cecil Has a Name Sep 2 at 16:02
vote up 3 vote down

To support it's signal/slot system QT relies on a special preprocessor and compiler that generates intermediate objects that do much of the processing. They refer to this as the meta-object compiler or MOC.

See http://doc.trolltech.com/4.5/moc.html for details.

The MOC (along with a couple other intermediate tools) works in conjunction with qmake; which produces makefiles in your native format (VC++, g++, etc) that build the intermediate files generated by the MOC as well as all of your source files into the final executable.

link|flag
vote up 1 vote down

CMake, yet another buildsystem, also has excellent support for Qt, enabling easy moc'ing and ui compiling. KDE is using CMake (hence the good Qt support). Unlike qmake, CMake "piggybacks" another buildsystem, e.g. Makefiles or Visual Studio solution files or . Scons is yet another buildsystem. This system is based on Python and is works in a manner similar to qmake in the sense that it doesn't piggyback any other buildsystem. I'm not sure how Qt support is for Scons, but I recon it should be a breeze.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.