blob: 096d88b56fdb70574f1c19d936972be44cfb8582 (
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 = \
remoteobjects_server \
cppclient \
simpleswitch \
websockets
qtHaveModule(widgets) {
SUBDIRS += \
modelviewclient \
modelviewserver
}
contains(QT_CONFIG, ssl): SUBDIRS += ssl
qtHaveModule(quick) {
SUBDIRS += \
plugins \
clientapp
unix:!android: SUBDIRS += qmlmodelviewclient
}
|