Re: How to get debug output
The first thing, please put your code into CODE tags and second thing, do you build your program in Debug or Release profile?
Re: How to get debug output
Sorry about the Code tag thing - I'm unused this interface
To build the program I typed:
> qmake
> make
In a mac terminal window - I'm not running inside QT Creator.
I don't know what a Debug or Release profile is.
Re: How to get debug output
Hi, try to add
to your .pro file. This will build the program in debug mode and enable QDebug output.
Ginsengelf
Re: How to get debug output
Still no output.
I tried all combinations of debug and console
Code:
CONFIG =+ debug
CONFIG += console
But no joy.
A bit of Googling showed that this question has been asked many times
but I could find no satisfactory answer.
Any more ideas?
Re: How to get debug output
What do you even mean by "debug output"? Are you referring to output from the qDebug() macro that you have added to your code or what are you referring to exactly?