-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMicroMailClient.pro
46 lines (33 loc) · 1.03 KB
/
MicroMailClient.pro
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
TEMPLATE = app
QT += qml quick webengine
qtHaveModule(widgets) {
QT += widgets # QApplication is required to get native styling with QtQuickControls
}
CONFIG += c++11
SOURCES += main.cpp \
Model/IMAPClientSession.cpp
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
#QML_IMPORT_PATH =
POCOHOME = "C:\Users\37567\Documents\Visual Studio 2015\Projects\MicroMailClient-QT\PocoLib"
INCLUDEPATH += "$${POCOHOME}\include"
LIBS += -L"$${POCOHOME}\Lib"
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
Model/Account.h \
Model/Attachment.h \
Model/IMAPClient.h \
Model/MailBody.h \
Model/MailClient.h \
Model/MailListModel.h \
Model/Utils.h \
Model/IMAPClientSession.h \
Model/ReceiveMailClient.h \
Model/SendMailClient.h \
Model/SMTPClient.h \
Model/POP3Client.h \
Exception/MailClientException.h \
Exception/MailGenerationException.h \
Exception/MailReceiveException.h \
Exception/MailSendException.h