blob: 4e1510299bf91e95a93f6daa88ba1b3f10078e8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Note: These version based 'plugins' are not an actual Qt plugins,
# they are just regular runtime loaded libraries
include(../qpluginbase.pri)
CONFIG -= plugin
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/s60
MMP_RULES += NOEXPORTLIBRARY
symbian-abld|symbian-sbsv2 {
defBlock = \
"$${LITERAL_HASH}ifdef WINSCW" \
"DEFFILE ../bwins/qts60plugin.def" \
"$${LITERAL_HASH}else" \
"DEFFILE ../eabi/qts60plugin.def" \
"$${LITERAL_HASH}endif"
} else {
CONFIG *= def_files
DEF_FILE = ../eabi/qts60pluginu.def
}
MMP_RULES += defBlock
|