Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hello there, In my .pro file I have added:
CONFIG(release) { DEFINES += QT_NO_DEBUG_OUTPUT }
But even though, I am not seing qDebug() prints anymore in both Debug and Release build. What is the proper way of defininf this only for one build? I would apreciate all help.
CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG_OUTPUT
This helped thank you,