summaryrefslogtreecommitdiffstats
path: root/tests/tests.pro
blob: 796861226d19b3d489f11871a5f7d102be8a80a3 (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
!include( ../config.pri ) {
 error( "Couldn't find the config.pri file!" )
}

TEMPLATE = subdirs
SUBDIRS += \ 
    auto \    
    presenterchart \
    polarcharttest \
    boxplottester

!contains(QT_VERSION, ^5\\..*\\..*$)|qtHaveModule(declarative) {
    SUBDIRS +=  qmlchartproperties \
                qmlchartaxis
}

contains(QT_CONFIG, opengl) {
    SUBDIRS +=  chartwidgettest \
                wavechart \
                chartviewer
} else {
    message("OpenGL not available. Some test apps are disabled")
}

contains(QT_VERSION, ^5\\..*\\..*$):qtHaveModule(quick) {
    SUBDIRS += quick2chartproperties
}