summaryrefslogtreecommitdiffstats
path: root/examples/examples.pro
blob: ef1cc1147e3795a7097e0f5612438877b57e0c32 (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
TEMPLATE = subdirs

# These examples all need widgets for now (using creator templates that use widgets)
contains(config_test_widgets, yes) {
    SUBDIRS += \
        radio \
        camera \
        slideshow \
        spectrum \
        audiorecorder \
        audiodevices \
        audioinput \
        audiooutput \
        videographicsitem \
        videowidget \
        player

    contains(QT_CONFIG, declarative) {
        disabled:SUBDIRS += declarative-camera
        SUBDIRS += \
            declarative-radio \
            video
    }

    QT += widgets
}