blob: 01a88cd13388dd9a89a7740ff0651582b665145e (
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)
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",""))
LIBS += -lefsrv
} else {
contains(QT_CONFIG, qt3support):QT += qt3support
DEFINES += SRCDIR=\\\"$$PWD/\\\"
}
|