PDA

View Full Version : Console window?



waynew
21st April 2010, 01:45
I knew once, but I have forgotten (sorry, senior moment here) and I can't find it again.
What is it that controls whether the Windows o/s console window shows for debugging?

I'm building a release, and it is still showing up.

My pro file has
CONFIG += release \
help

nikhilqt
21st April 2010, 06:19
If your subsystem is Console, then console window shows up.

aamer4yu
21st April 2010, 07:51
For showing console window it was -

CONFIG += console

may be you can try
CONFIG -= console for release :rolleyes:

waynew
21st April 2010, 23:57
Thanks for your suggestions, but nothing is working so far. I've tried changing likely looking settings in Projects, but no luck.

nikhilqt
22nd April 2010, 10:21
you are sure it is not a QtCoreApplication, right ?

waynew
22nd April 2010, 21:48
Right, I'm sure. QtGui, no QtCore

waynew
22nd April 2010, 22:27
Working now - it was the testlib. Thanks for all of your suggestions.