summaryrefslogtreecommitdiffstats
path: root/examples/remoteobjects/remoteobjects.pro
blob: 9b22d218294ed3a8f111be93a53fd1ce454f7cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TEMPLATE = subdirs
CONFIG += debug_and_release ordered
SUBDIRS = \
    server \
    cppclient \
    simpleswitch \
    websockets

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

contains(QT_CONFIG, ssl): SUBDIRS += ssl

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

    unix:!android: SUBDIRS += qmlmodelviewclient
}