How to use QT & Code::Blocks together?

Guys, I just started programming in C++. Here I want to try it together with Qt, but how to use it together with your favorite Codeblocks I do not know, tell me how?

Author: Nicolas Chabanovsky, 2012-04-16

1 answers

I also recommend using QtCreator, it works perfectly and is sharpened for Qt. But if you really want to use a different environment, then first you just need to write the following sequence of actions as the build steps: qmake make

And the bad news is that the *.pro project file will have to be edited manually. See the description of the qmake format and commands

 2
Author: kkvt, 2012-04-21 18:52:06