blob: 432c7825be86dfb28ca654c1afff9387bab2c537 (
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
|
TEMPLATE = lib
CONFIG += plugin testplugin
INCLUDEPATH += ../../../src/serviceframework
HEADERS = sampleserviceplugin.h
SOURCES = sampleserviceplugin.cpp
TARGET = tst_bm_sfw_sampleserviceplugin
DESTDIR = .
include(../../../common.pri)
CONFIG += mobility
MOBILITY = serviceframework
symbian {
load(data_caging_paths)
pluginDep.sources = tst_bm_sfw_sampleserviceplugin.dll
pluginDep.path = $$QT_PLUGINS_BASE_DIR/plugins
DEPLOYMENT += pluginDep
TARGET.EPOCALLOWDLLDATA = 1
TARGET.CAPABILITY = ALL -TCB
}
maemo*:PLUGIN_TYPE=serviceframework
xml.path = $$DESTDIR/xmldata
xml.files = xml/bm_sampleservice.xml
xml.CONFIG = no_link no_dependencies explicit_dependencies no_build combine ignore_no_exist no_clean
INSTALLS += xml
build_pass:ALL_DEPS+=install_xml
|