blob: e3bfac8c7aa29dc299a06a40531c81780febaf34 (
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
46
47
48
49
|
TEMPLATE = subdirs
SUBDIRS = \
tst_python_email \
tst_qmailaddress \
tst_qmailcodec \
tst_qmailmessage \
tst_qmailmessagebody \
tst_qmailmessageheader \
tst_qmailmessagepart \
tst_qmailstore \
tst_qmailstorekeys \
tst_qmailaccountconfiguration \
tst_qprivateimplementation \
tst_longstring \
tst_longstream \
tst_qmailmessageset \
tst_qmailserviceaction \
tst_qmailstorageaction \
tst_qmail_sortkeys \
tst_qmail_listmodels \
tst_storagemanager \
tst_qmaildisconnected \
tst_qmailnamespace \
tst_locks \
tst_qmailthread \
tst_qmflist \
tst_pop \
tst_imap \
tst_smtp
exists(/usr/bin/gpgme-config) {
SUBDIRS += tst_crypto
}
# these tests fail to build/pass on windows.
# longer term, we should remove this stuff entirely in favour of Qt's
# categorised logging.
!win32 {
SUBDIRS += \
tst_qmaillog \
tst_qlogsystem
}
CONFIG += unittest
# Install test file description
test_description.files = qt5/tests.xml
test_description.path = $$QMF_INSTALL_ROOT/tests5
INSTALLS += test_description
|