blob: d8d34b551097e31630ed24a649f911d314281edd (
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
|
TEMPLATE = lib
TARGET = imap
PLUGIN_TYPE = messagingframework/messageservices
PLUGIN_CLASS_NAME = QmfImapPlugin
load(qt_plugin)
QT = core network qmfclient qmfclient-private qmfmessageserver qmfmessageserver-private
HEADERS += imapclient.h \
imapconfiguration.h \
imaplog.h \
imapmailboxproperties.h \
imapprotocol.h \
imapservice.h \
imapstructure.h \
imapauthenticator.h \
imapstrategy.h \
integerregion.h \
imaptransport.h \
serviceactionqueue.h \
idlenetworksession.h
SOURCES += imapclient.cpp \
imapconfiguration.cpp \
imaplog.cpp \
imapprotocol.cpp \
imapservice.cpp \
imapstructure.cpp \
imapauthenticator.cpp \
imapstrategy.cpp \
integerregion.cpp \
imaptransport.cpp \
serviceactionqueue.cpp \
idlenetworksession.cpp
qtConfig(system-zlib) {
QMAKE_USE_PRIVATE += zlib
} else {
QT_PRIVATE += zlib-private
}
# hack longstream work without the private/ on include
INCLUDEPATH += $$PWD/../../../libraries/qmfmessageserver/
|