summaryrefslogtreecommitdiffstats
path: root/src/imports/testlib/testlib.pro
blob: 3605ebf5e7955dc057348e634877270bfed50f73 (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
TEMPLATE = lib
TARGET  = qmltestplugin
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

SOURCES += main.cpp
HEADERS +=

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

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

include(../../quicktestlib/quicktestlib_dep.pri)