aboutsummaryrefslogtreecommitdiff
path: root/examples/servicefw/provider/serviceif/textprocessorinterface/textprocessorinterface.pro
blob: 2d709d004b523964e9628478e1bbbb0b0a5c73f0 (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
38
39
40
41
42
43
44
45
46
47
48
MROOT = ../../../../..
include($$MROOT/mkspecs/common.pri)

system(m-servicefwgen -p com.nokia.TextProcessorInterface)

MLIB = $$MROOT/lib
MSIF = $$MROOT/examples/servicefw
MSFW = $$MROOT/mservicemapper
MSIFLIB = $$MSIF/lib
MSIFINCLUDE = $$MSIF/include
MSFWINCLUDE = $$MROOT/src/servicefwif

INCLUDEPATH += \
    $$MSFWINCLUDE \
    $$MSFWINCLUDE/include \
    $$MSIFINCLUDE \
    $$MROOT/src/include \

DEPENTPATH += $$INCLUDEPATH
TARGET = textprocessor
DESTDIR = $$MSIFLIB
TEMPLATE = lib
SOURCES += \
    textprocessorinterfaceproxy.cpp \
    textprocessorinterface.cpp \

HEADERS += \
    textprocessorinterfaceproxy.h \
    textprocessorinterface.h \

QT += dbus

target.path += $$[QT_INSTALL_LIBS]

headers.target = .dummy
headers.commands = touch $$headers.target
headers.path = $$[QT_INSTALL_HEADERS]
headers.files = $$HEADERS

xml.target = .dummy
xml.commands = touch $$xml.target
xml.path = $$M_DBUS_INTERFACES_DIR
xml.files = com.nokia.TextProcessorInterface.xml

INSTALLS += \
    target \
    headers \
    xml \