summaryrefslogtreecommitdiffstats
path: root/examples/declarative-sfw-dialer/voipdialer/voipdialer.pro
blob: a3e774196e9930a84d3081df2171c4ea7d0ba612 (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
34
35
36
37
TEMPLATE = lib
CONFIG += plugin
INCLUDEPATH += ../../../src/serviceframework
PLUGIN_TYPE = serviceframework
HEADERS += voipdialer.h \
           voipdialerplugin.h

SOURCES += voipdialer.cpp \
           voipdialerplugin.cpp
QT += gui
TARGET = serviceframework_voipdialerservice

contains(QT_CONFIG, declarative):DEFINES += DECLARATIVE

include(../../mobility_examples.pri)
CONFIG += mobility
MOBILITY = serviceframework

symbian {
    load(data_caging_paths)
    pluginDep.sources = serviceframework_voipdialerservice.dll
    pluginDep.path = $$QT_PLUGINS_BASE_DIR
    DEPLOYMENT += pluginDep

    xmlautoimport.path = /private/2002AC7F/import/
    xmlautoimport.sources = voipdialerservice.xml
    DEPLOYMENT += xmlautoimport

    TARGET.EPOCALLOWDLLDATA = 1
    TARGET.CAPABILITY = LocalServices Location NetworkServices ReadUserData WriteUserData UserEnvironment
    load(armcc_warnings)
}

#not needed for symbian due to autoimport above
xml.path = $$QT_MOBILITY_EXAMPLES/xmldata
xml.files = voipdialerservice.xml
INSTALLS += xml