blob: a389e4ae3196db17d6db12b59588c74c209224bb (
plain)
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
|
TEMPLATE = app
CONFIG += unittest
QT += testlib widgets qmfclient qmfclient-private qmfmessageserver
TARGET = tst_messageserver
target.path += $$QMF_INSTALL_ROOT/tests5
DEPENDPATH += . 3rdparty
!win32 {
DEFINES += HAVE_VALGRIND
}
IMAP_PLUGIN=$$BASE/src/plugins/messageservices/imap/
MESSAGE_SERVER=$$BASE/src/tools/messageserver
INCLUDEPATH += . 3rdparty \
$$IMAP_PLUGIN \
$$MESSAGE_SERVER
HEADERS += benchmarkcontext.h \
qscopedconnection.h \
testfsusage.h \
$$IMAP_PLUGIN/imapconfiguration.h \
$$MESSAGE_SERVER/mailmessageclient.h \
$$MESSAGE_SERVER/messageserver.h \
$$MESSAGE_SERVER/servicehandler.h \
$$MESSAGE_SERVER/newcountnotifier.h
SOURCES += benchmarkcontext.cpp \
qscopedconnection.cpp \
testfsusage.cpp \
tst_messageserver.cpp \
$$IMAP_PLUGIN/imapconfiguration.cpp \
$$MESSAGE_SERVER/mailmessageclient.cpp \
$$MESSAGE_SERVER/messageserver.cpp \
$$MESSAGE_SERVER/prepareaccounts.cpp \
$$MESSAGE_SERVER/servicehandler.cpp \
$$MESSAGE_SERVER/newcountnotifier.cpp
linux {
HEADERS += testmalloc.h 3rdparty/cycle_p.h
SOURCES += testmalloc.cpp
}
INSTALLS += target
|