New to QT, I've imported a project someone else made, and it compiles and runs on the MinGW version of QT Creator. But there's a small problem with it, that would be much easier to diagnose if I could see the debug output.
There are lines all over the place like "qInfo() << "debug message";", but I'm not seeing any output from them in the application output window when I run the project in debug mode, which is when I understand it is supposed to be. All I can see after running the program is:
Debugging starts Debugging has finished
What I've tried:
Made sure the kit used is the QT debugger and mingw that came with the install
Put an ifdef, with "#undef QT_NO_INFO_OUTPUT" at the top of main.cpp
Added include QtDebug to all the header files
Still nothing.
What am I doing wrong?
Keep in mind I am new to Qt, maybe one of the things I'm saying I've tried I haven't implemented properly :S
Thanks!