summaryrefslogtreecommitdiffstats
path: root/examples/qtmail/qtmail.pro
blob: 8d2effad14a5369d5f6d995ef6736c593726eda1 (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
58
59
60
TEMPLATE = app
TARGET = qtmail5

# TODO: example linking against private headers is bad
QT += widgets qmfclient qmfclient-private qmfmessageserver qmfwidgets

# Use webkit to render mail if available
contains(QT_CONFIG,webkit){
    QT += network webkitwidgets
    DEFINES += USE_WEBKIT
}

target.path += $$QMF_INSTALL_ROOT/bin

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

include(../../common.pri)