summaryrefslogtreecommitdiffstats
path: root/examples/remoteobjects/remoteobjects.pro
blob: 10a6e80d7c814feb29d524b7f033a3c338d10266 (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
TEMPLATE = subdirs
CONFIG += debug_and_release ordered
SUBDIRS = \
    server \
    cppclient \
    cbor_python \
    simpleswitch \
    websockets

qtHaveModule(widgets) {
    SUBDIRS += \
        modelviewclient \
        modelviewserver
}

contains(QT_CONFIG, ssl): SUBDIRS += ssl

qtHaveModule(quick) {
    SUBDIRS += \
        plugins \
        clientapp

    unix:!android: SUBDIRS += qmlmodelviewclient
}