SmtpClient-for-Qt/SMTPEmail.pro

43 lines
852 B
Prolog
Raw Normal View History

2011-08-30 18:59:16 +00:00
#-------------------------------------------------
#
# Project created by QtCreator 2011-08-11T20:59:25
#
#-------------------------------------------------
QT += core gui network
TARGET = SMTPEmail
TEMPLATE = app
2011-08-30 21:53:08 +00:00
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 \
2011-08-31 17:07:33 +00:00
demos/demo2/sendemail.cpp \
demos/demo2/demo2.cpp
2011-08-30 18:59:16 +00:00
HEADERS += \
2011-08-30 21:53:08 +00:00
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 \
2011-08-31 17:07:33 +00:00
src/SmtpMime \
demos/demo2/sendemail.h
2011-08-30 21:59:35 +00:00
OTHER_FILES +=
2011-08-31 17:07:33 +00:00
FORMS += \
demos/demo2/sendemail.ui