summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmake/testdata/operators/operators.pro
blob: 5285c1a982f793c76df93621c1bebe443b2d7967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
CONFIG = qt thread

CONFIG += debug
!contains( CONFIG, debug ) {
   message( "FAILED: +=" )
}

CONFIG -= thread
contains( CONFIG, thread ) {
   message( "FAILED: -=" )
}

CONFIG = thread
CONFIG *= thread
!count( CONFIG, 1 ) {
   message( "FAILED: *=" )
}

CONFIG = thread QT_DLL debug
CONFIG ~= s/QT_+/Q_
!contains( CONFIG, Q_DLL ) {
   message( "FAILED: ~=" )
}