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

TEMPLATE = subdirs
SUBDIRS += piechartcustomization \
           dynamicspline \
           nesteddonuts \
           chartinteractions \
           callout \
           chartthemes

!contains(QT_VERSION, ^5\\..*\\..*$)|qtHaveModule(declarative) {
    SUBDIRS += qmlchart \
           qmlweather \
           qmlf1legends \
           qmlcustomizations \
           qmlaxes \
           qmlcustomlegend \
           qmlpolarchart \
           qmloscilloscope
}

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

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