blob: cf612f130c314b78a1291ecd428e2c40b277050d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
load(qttest_p4)
SOURCES += tst_qdir.cpp
RESOURCES += qdir.qrc
QT = core
wince*|symbian {
DirFiles.sources = testdir testdata searchdir resources entrylist types tst_qdir.cpp
DirFiles.path = .
DEPLOYMENT += DirFiles
}
wince* {
DEFINES += SRCDIR=\\\"\\\"
} else:symbian {
TARGET.CAPABILITY += AllFiles
TARGET.UID3 = 0xE0340002
DEFINES += SYMBIAN_SRCDIR_UID=$$lower($$replace(TARGET.UID3,"0x",""))
} else {
contains(QT_CONFIG, qt3support):QT += qt3support
DEFINES += SRCDIR=\\\"$$PWD/\\\"
}
|