59 lines
1.1 KiB
Prolog
59 lines
1.1 KiB
Prolog
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2011-08-11T20:59:25
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
|
||
|
QT += core network
|
||
|
|
||
|
TARGET = SmtpMime
|
||
|
TEMPLATE = lib
|
||
|
|
||
|
DEFINE += SMTP_MIME_LIBRARY
|
||
|
|
||
|
SOURCES += \
|
||
|
emailaddress.cpp \
|
||
|
mimeattachment.cpp \
|
||
|
mimefile.cpp \
|
||
|
mimehtml.cpp \
|
||
|
mimeinlinefile.cpp \
|
||
|
mimemessage.cpp \
|
||
|
mimepart.cpp \
|
||
|
mimetext.cpp \
|
||
|
smtpclient.cpp \
|
||
|
quotedprintable.cpp \
|
||
|
mimemultipart.cpp \
|
||
|
mimecontentencoder.cpp \
|
||
|
mimebase64encoder.cpp \
|
||
|
mimeqpencoder.cpp \
|
||
|
mimeqpformatter.cpp \
|
||
|
mimebase64formatter.cpp \
|
||
|
mimecontentformatter.cpp
|
||
|
|
||
|
HEADERS += \
|
||
|
emailaddress.h \
|
||
|
mimeattachment.h \
|
||
|
mimefile.h \
|
||
|
mimehtml.h \
|
||
|
mimeinlinefile.h \
|
||
|
mimemessage.h \
|
||
|
mimepart.h \
|
||
|
mimetext.h \
|
||
|
smtpclient.h \
|
||
|
SmtpMime \
|
||
|
quotedprintable.h \
|
||
|
mimemultipart.h \
|
||
|
smtpmime_global.h \
|
||
|
mimecontentencoder.h \
|
||
|
mimebase64encoder.h \
|
||
|
mimeqpencoder.h \
|
||
|
mimeqpformatter.h \
|
||
|
mimebase64formatter.h \
|
||
|
mimecontentformatter.h
|
||
|
|
||
|
OTHER_FILES += \
|
||
|
LICENSE \
|
||
|
README.md
|
||
|
|
||
|
FORMS +=
|