forked from bluetiger9/SmtpClient-for-Qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSMTPEmail.pri
48 lines (40 loc) · 1.13 KB
/
SMTPEmail.pri
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
#-------------------------------------------------
#
# Project created by QtCreator 2011-08-11T20:59:25
#
#-------------------------------------------------
QT += core network
# Build as an application
#TEMPLATE = app
# Build as a library
DEFINES += SMTP_BUILD
INCLUDEPATH += $$PWD/src/include
SOURCES += \
$$PWD/src/emailaddress.cpp \
$$PWD/src/mimeattachment.cpp \
$$PWD/src/mimefile.cpp \
$$PWD/src/mimehtml.cpp \
$$PWD/src/mimeinlinefile.cpp \
$$PWD/src/mimemessage.cpp \
$$PWD/src/mimepart.cpp \
$$PWD/src/mimetext.cpp \
$$PWD/src/smtpclient.cpp \
$$PWD/src/quotedprintable.cpp \
$$PWD/src/mimemultipart.cpp \
$$PWD/src/mimecontentformatter.cpp \
HEADERS += \
$$PWD/src/emailaddress.h \
$$PWD/src/mimeattachment.h \
$$PWD/src/mimefile.h \
$$PWD/src/mimehtml.h \
$$PWD/src/mimeinlinefile.h \
$$PWD/src/mimemessage.h \
$$PWD/src/mimepart.h \
$$PWD/src/mimetext.h \
$$PWD/src/smtpclient.h \
$$PWD/src/SmtpMime \
$$PWD/src/quotedprintable.h \
$$PWD/src/mimemultipart.h \
$$PWD/src/mimecontentformatter.h \
$$PWD/src/smtpexports.h
FORMS +=