Dark Star1
Dark Star1

Reputation: 7383

How do I set the QT debugger to give more meaningful messages?

I'm currently learning the QT framework. I need to know if it's possible to set the debugger to give meaningful messages as opposed to what it gives me right now, which is the failed step in the build process (usually the '.o' file) I need to know if it's possible to set it to giving meaningful message like Visual studio

Upvotes: 1

Views: 74

Answers (1)

bitc
bitc

Reputation: 1588

The debugger is not involved in the build process. Those errors messages come either from the compiler or the linker, or the moc compiler.

You can try qmake -d to make it extra verbose. That might help you understand the nature of the problem.

Upvotes: 1

Related Questions