summaryrefslogtreecommitdiffstats
path: root/tests/auto/auto.pro
blob: 248197cb27a40bf4e2c3406838007bea83657629 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
TEMPLATE = subdirs

SUBDIRS += \
    corelib \
    dbus \
    gui \
    integrationtests \
    network \
    opengl \
    sql \
    testlib \
    tools \
    v8 \
    xml \
    other \
    widgets \

cross_compile:                              SUBDIRS -= tools
!contains(QT_CONFIG, opengl):               SUBDIRS -= opengl
!unix|embedded|!contains(QT_CONFIG, dbus):  SUBDIRS -= dbus
!contains(QT_CONFIG, v8):                   SUBDIRS -= v8

# disable 'make check' on Mac OS X for the following subdirs for the time being
mac {
    dbus.CONFIG += no_check_target
    gui.CONFIG += no_check_target
    integrationtests.CONFIG += no_check_target
    network.CONFIG += no_check_target
    opengl.CONFIG += no_check_target
    sql.CONFIG += no_check_target
    testlib.CONFIG += no_check_target
    tools.CONFIG += no_check_target
    v8.CONFIG += no_check_target
    xml.CONFIG += no_check_target
    other.CONFIG += no_check_target
    widgets.CONFIG += no_check_target
}