blob: 82a951a8109e336f477cd2b8526d7ec8b882f81c (
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
|
QT += testlib core-private webchannel-private
TEMPLATE = app
TARGET = qml
CONFIG += warn_on qmltestcase
# TODO: running tests without requiring make install
IMPORTPATH += $$OUT_PWD/../../../qml $$PWD
SOURCES += \
qml.cpp \
testtransport.cpp \
testwebchannel.cpp \
testobject.cpp
HEADERS += \
testtransport.h \
testwebchannel.h \
testobject.h
OTHER_FILES += \
Client.qml \
WebChannelTest.qml \
tst_webchannel.qml \
tst_metaobjectpublisher.qml \
tst_bench.qml \
tst_multiclient.qml
TESTDATA = data/*
DISTFILES += \
tst_webchannelseparation.qml
|