0
|
1 |
load(qttest_p4)
|
|
2 |
SOURCES += ../tst_qpluginloader.cpp
|
|
3 |
TARGET = ../tst_qpluginloader
|
|
4 |
QT = core
|
|
5 |
HEADERS += ../theplugin/plugininterface.h
|
|
6 |
|
|
7 |
win32 {
|
|
8 |
CONFIG(debug, debug|release) {
|
|
9 |
TARGET = ../../debug/tst_qpluginloader
|
|
10 |
} else {
|
|
11 |
TARGET = ../../release/tst_qpluginloader
|
|
12 |
}
|
|
13 |
}
|
|
14 |
|
|
15 |
|
|
16 |
wince*: {
|
|
17 |
addFiles.sources = $$OUT_PWD/../bin/*.dll
|
|
18 |
addFiles.path = bin
|
|
19 |
DEPLOYMENT += addFiles
|
|
20 |
}
|
|
21 |
|
|
22 |
symbian: {
|
|
23 |
libDep.sources = mylib.dll
|
|
24 |
libDep.path = /sys/bin
|
|
25 |
pluginDep.sources = theplugin.dll
|
|
26 |
pluginDep.path = bin
|
|
27 |
|
|
28 |
DEPLOYMENT += libDep pluginDep
|
|
29 |
}
|