aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/qmake/debug_and_release.pro
blob: 92e8dbf76aa00231649ec817ce6ae47dd5beadeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! [0]
CONFIG += debug_and_release

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

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