8

I want to define QT_NO_DEBUG_OUTPUT for Release build, but I couldn't find where to add it.

I need the preprocessor definition to be Release-specific, i.e. it should affect the Release build, but not the Debug build.

I'm looking for the equivalent of this (it's in Visual Studio):

enter image description here

1 Answer 1

11

In your project file:

CONFIG(release, debug|release) {
    #This is a release build
    DEFINES += QT_NO_DEBUG_OUTPUT
} else {
    #This is a debug build
}

Note that CONFIG can contain both "release" as well as "debug". Only the last is effective, which is what the above check does. This is explained here:

http://doc.qt.digia.com/qt/qmake-function-reference.html#config-config

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.