blob: 9352f3b40e37f3275c1643a757254a2c632ea850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
load(qttest_p4)
TEMPLATE = app
TARGET = qmltime
QT += declarative
macx:CONFIG -= app_bundle
SOURCES += qmltime.cpp
symbian* {
TARGET.CAPABILITY = "All -TCB"
example.sources = example.qml
esample.path = .
tests.sources = tests/*
tests.path = tests
anshors.sources = tests/anchors/*
anchors.path = tests/anchors
item_creation.sources = tests/item_creation/*
item_creation.path = tests/item_creation
positioner_creation.sources = tests/positioner_creation/*
positioner_creation.path = tests/positioner_creation
DEPLOYMENT += example tests anchors item_creation positioner_creation
}
|