0
|
1 |
load(qttest_p4)
|
|
2 |
SOURCES += ../tst_qfile.cpp
|
|
3 |
|
|
4 |
wince*|symbian {
|
|
5 |
QT = core gui
|
|
6 |
files.sources += ..\dosfile.txt ..\noendofline.txt ..\testfile.txt \
|
|
7 |
..\testlog.txt ..\two.dots.file ..\tst_qfile.cpp \
|
|
8 |
..\Makefile ..\forCopying.txt ..\forRenaming.txt
|
|
9 |
files.path = .
|
|
10 |
resour.sources += ..\resources\file1.ext1
|
|
11 |
resour.path = resources
|
|
12 |
|
|
13 |
DEPLOYMENT = files resour
|
|
14 |
}
|
|
15 |
|
|
16 |
wince* {
|
|
17 |
DEFINES += SRCDIR=\\\"\\\"
|
|
18 |
} else:symbian {
|
|
19 |
# do not define SRCDIR at all
|
|
20 |
TARGET.EPOCHEAPSIZE = 0x100000 0x3000000
|
|
21 |
} else {
|
|
22 |
QT = core network
|
|
23 |
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
|
24 |
}
|
|
25 |
|
|
26 |
RESOURCES += ../qfile.qrc ../rename-fallback.qrc ../copy-fallback.qrc
|
|
27 |
|
|
28 |
TARGET = ../tst_qfile
|
|
29 |
|
|
30 |
win32 {
|
|
31 |
CONFIG(debug, debug|release) {
|
|
32 |
TARGET = ../../debug/tst_qfile
|
|
33 |
} else {
|
|
34 |
TARGET = ../../release/tst_qfile
|
|
35 |
}
|
|
36 |
LIBS+=-lole32 -luuid
|
|
37 |
}
|
|
38 |
|
|
39 |
|