blob: 5e6221a82103f206787e5ed1b38f7923efbd69b9 (
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
|
CONFIG += testcase
TARGET = tst_qdirmodel
QT += testlib
SOURCES += tst_qdirmodel.cpp
wince*|symbian {
addit.files = dirtest\\test1\\*
addit.path = dirtest\\test1
tests.files = test\\*
tests.path = test
sourceFile.files = tst_qdirmodel.cpp
sourceFile.path = .
DEPLOYMENT += addit tests sourceFile
}
wince*: {
DEFINES += SRCDIR=\\\"./\\\"
} else:symbian {
TARGET.UID3 = 0xE0340003
DEFINES += SYMBIAN_SRCDIR_UID=$$lower($$replace(TARGET.UID3,"0x",""))
} else {
DEFINES += SRCDIR=\\\"$$PWD/\\\"
}
|