doc/src/snippets/qmake/debug_and_release.pro
author Alex Gilkes <alex.gilkes@nokia.com>
Mon, 11 Jan 2010 14:00:40 +0000
changeset 0 1918ee327afb
permissions -rw-r--r--
Revision: 200952

#! [0]
CONFIG += debug_and_release

CONFIG(debug, debug|release) {
    TARGET = debug_binary
} else {
#! [0] #! [1]
    TARGET = release_binary
}
#! [1]

#! [2]
CONFIG += build_all
#! [2]