aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/testlib/testlib.pro
blob: cc29d53f517fd44535cc2277f94fdfc3200850a0 (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
TARGET  = qmltestplugin
TARGETPATH = QtTest
include(../qimportbase.pri)

CONFIG += qt plugin

symbian {
    CONFIG += epocallowdlldata
    contains(QT_EDITION, OpenSource) {
        TARGET.CAPABILITY = LocalServices NetworkServices ReadUserData UserEnvironment WriteUserData
    } else {
        TARGET.CAPABILITY = All -Tcb
    }
}

QT += declarative script qmltest qmltest-private

SOURCES += main.cpp
HEADERS +=

qdeclarativesources.files += \
    qmldir \
    TestCase.qml \
    SignalSpy.qml \
    testlogger.js

qdeclarativesources.path += $$[QT_INSTALL_IMPORTS]/QtTest
target.path += $$[QT_INSTALL_IMPORTS]/QtTest
INSTALLS += qdeclarativesources target