blob: 7a8c1e11b82e1a40fb4de0945a9e6d33421e731a (
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
49
50
51
52
53
54
55
56
57
|
TEMPLATE = app
TARGET = qtmail5
target.path += $$[QT_INSTALL_EXAMPLES]/qmf/qtmail
QT += widgets qmfclient qmfmessageserver qmfwidgets
# Use webkit to render mail if available
contains(QT_CONFIG,webkit){
QT += network webkitwidgets
DEFINES += USE_WEBKIT
}
HEADERS += emailclient.h \
messagelistview.h \
searchview.h \
selectcomposerwidget.h \
readmail.h \
writemail.h \
accountsettings.h \
editaccount.h \
statusmonitorwidget.h \
statusbar.h \
statusmonitor.h \
qmailcomposer.h \
qmailviewer.h \
attachmentlistwidget.h \
detailspage_p.h \
emailcomposer.h \
attachmentoptions.h \
browserwidget.h \
genericviewer.h
SOURCES += emailclient.cpp \
main.cpp \
messagelistview.cpp \
searchview.cpp \
selectcomposerwidget.cpp \
readmail.cpp \
writemail.cpp \
accountsettings.cpp \
editaccount.cpp \
statusmonitorwidget.cpp \
statusbar.cpp \
statusmonitor.cpp \
qmailcomposer.cpp \
qmailviewer.cpp \
attachmentlistwidget.cpp \
detailspage.cpp \
emailcomposer.cpp \
attachmentoptions.cpp \
browserwidget.cpp \
genericviewer.cpp
FORMS += searchviewbasephone.ui
RESOURCES += qtmail.qrc
INSTALLS += target
CONFIG += install_ok
|