blob: 0c7297c5858fde7e0c3af3ab95fcd53fddef8b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
TEMPLATE = lib
TARGET = pop
PLUGIN_TYPE = messagingframework/messageservices
PLUGIN_CLASS_NAME = QmfPopPlugin
load(qt_plugin)
QT = core network qmfclient qmfclient-private qmfmessageserver qmfmessageserver-private
HEADERS += popclient.h \
popconfiguration.h \
poplog.h \
popservice.h \
popauthenticator.h
SOURCES += popclient.cpp \
popconfiguration.cpp \
poplog.cpp \
popservice.cpp \
popauthenticator.cpp
# hack longstream work without the private/ on include
INCLUDEPATH += $$PWD/../../../libraries/qmfmessageserver/
|