48 lines
956 B
Prolog
48 lines
956 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2011-08-11T20:59:25
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui network
|
|
|
|
TARGET = SMTPEmail
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += \
|
|
src/emailaddress.cpp \
|
|
src/mimeattachment.cpp \
|
|
src/mimefile.cpp \
|
|
src/mimehtml.cpp \
|
|
src/mimeinlinefile.cpp \
|
|
src/mimemessage.cpp \
|
|
src/mimepart.cpp \
|
|
src/mimetext.cpp \
|
|
src/smtpclient.cpp \
|
|
src/quotedprintable.cpp \
|
|
src/mimemultipart.cpp \
|
|
test.cpp \
|
|
src/mimecontentformatter.cpp
|
|
|
|
HEADERS += \
|
|
src/emailaddress.h \
|
|
src/mimeattachment.h \
|
|
src/mimefile.h \
|
|
src/mimehtml.h \
|
|
src/mimeinlinefile.h \
|
|
src/mimemessage.h \
|
|
src/mimepart.h \
|
|
src/mimetext.h \
|
|
src/smtpclient.h \
|
|
src/SmtpMime \
|
|
src/quotedprintable.h \
|
|
src/mimemultipart.h \
|
|
src/mimecontentformatter.h
|
|
|
|
OTHER_FILES += \
|
|
LICENSE \
|
|
README.md
|
|
|
|
FORMS +=
|