blob: efa2e856b324df7efcf8d2b86fe8a9312f5a546d (
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
26
27
28
29
30
31
32
33
|
load(qttest_p4)
SOURCES += ../tst_qtextcodec.cpp
!wince*: {
TARGET = ../tst_qtextcodec
win32: {
CONFIG(debug, debug|release) {
TARGET = ../../debug/tst_qtextcodec
} else {
TARGET = ../../release/tst_qtextcodec
}
}
} else {
TARGET = tst_qtextcodec
}
wince*|symbian {
addFiles.sources = ../*.txt
addFiles.path = .
DEPLOYMENT += addFiles
DEPLOYMENT_PLUGIN += qcncodecs qjpcodecs qkrcodecs qtwcodecs
}
wince*: {
DEFINES += SRCDIR=\\\"\\\"
}else:symbian {
# Symbian can't define SRCDIR meaningfully here
LIBS += -lcharconv -lconvnames -lgb2312_shared -ljisx0201 -ljisx0208 -lefsrv
} else {
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
}
|