9e048495ba
(waitForReadyConnected, waitForAuthenticated, waitForMailSent) synchronous waiting. Added writeToDevice() function to MimeMessage and MimePart (and subclasses), now these are used in SmtpClient instead of toString(). Added some unit tests.
28 lines
657 B
Prolog
28 lines
657 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2012-09-22T16:39:45
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += testlib gui
|
|
|
|
TARGET = test
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp \
|
|
connectiontest.cpp
|
|
|
|
HEADERS += \
|
|
connectiontest.h
|
|
|
|
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../bin/lib/release/ -lSmtpMime
|
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../bin/lib/debug/ -lSmtpMime
|
|
else:unix:!symbian: LIBS += -L$$PWD/../bin/lib/release/ -lSmtpMime
|
|
|
|
INCLUDEPATH += $$PWD/../bin/lib/release
|
|
DEPENDPATH += $$PWD/../bin/lib/release
|