blob: 3b132dfa9da7dcef147e56e18cfe2c5d2eafbdd4 (
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
|
TEMPLATE = app
include(../../../common.pri)
TARGET = messagingaccounts
target.path += $$QMF_INSTALL_ROOT/bin
INSTALLS += target
DEPENDPATH += .
INCLUDEPATH += . ../../../src/libraries/qtopiamail \
../../../src/libraries/qtopiamail/support \
../../../src/libraries/messageserver
LIBS += -L../../../src/libraries/qtopiamail -lqtopiamail \
-L../../../src/libraries/messageserver -lmessageserver
HEADERS += accountsettings.h \
editaccount.h \
mmseditaccount.h \
statusdisplay.h
SOURCES += accountsettings.cpp \
editaccount.cpp \
main.cpp \
mmseditaccount.cpp \
statusdisplay.cpp
RESOURCES += messagingaccounts.qrc
|