blob: b0c52b5658c36795fee69befb7d152a66bfb10db (
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
|
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
HEADERS += \
testtransport.h \
testwebchannel.h
OTHER_FILES += \
WebChannelTest.qml \
tst_webchannel.qml \
tst_metaobjectpublisher.qml \
tst_bench.qml
TESTDATA = data/*
|