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

TEMPLATE = subdirs
SUBDIRS += piechartcustomization \
           dynamicspline \
           nesteddonuts \
           qmlchart \
           qmlweather \
           qmlf1legends \
           qmlcustomizations \
           qmlcustommodel \
           chartinteractions \
           qmlaxes \
           qmlcustomlegend \
           callout \
           qmlpolarchart

contains(QT_CONFIG, opengl) {
        SUBDIRS +=  chartthemes \
                    qmloscilloscope
} else {
    message("OpenGL not available. Some demos are disabled")
}

contains(QT_CONFIG, multimedia) {
        SUBDIRS += audio
} else {
    message("QtMultimedia library not available. Some demos are disabled")
}