FlashMQTests.pro
2.49 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
QT += testlib
QT -= gui
QT += network
DEFINES += TESTING \
"FLASHMQ_VERSION=\\\"0.0.0\\\""
INCLUDEPATH += ..
CONFIG += qt console warn_on depend_includepath testcase
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += tst_maintests.cpp \
../cirbuf.cpp \
../client.cpp \
../exceptions.cpp \
../mainapp.cpp \
../mqttpacket.cpp \
../retainedmessage.cpp \
../rwlockguard.cpp \
../subscriptionstore.cpp \
../threaddata.cpp \
../types.cpp \
../utils.cpp \
../logger.cpp \
../authplugin.cpp \
../session.cpp \
../configfileparser.cpp \
../sslctxmanager.cpp \
../timer.cpp \
../iowrapper.cpp \
../mosquittoauthoptcompatwrap.cpp \
../settings.cpp \
../listener.cpp \
../unscopedlock.cpp \
../scopedsocket.cpp \
../bindaddr.cpp \
../oneinstancelock.cpp \
../evpencodectxmanager.cpp \
../acltree.cpp \
../threadlocalutils.cpp \
../flashmq_plugin.cpp \
../retainedmessagesdb.cpp \
../persistencefile.cpp \
../sessionsandsubscriptionsdb.cpp \
../qospacketqueue.cpp \
../threadglobals.cpp \
../threadloop.cpp \
../publishcopyfactory.cpp \
../variablebyteint.cpp \
../mqtt5properties.cpp \
../globalstats.cpp \
../derivablecounter.cpp \
../packetdatatypes.cpp \
../flashmqtestclient.cpp \
mainappthread.cpp
HEADERS += \
../cirbuf.h \
../client.h \
../exceptions.h \
../forward_declarations.h \
../mainapp.h \
../mqttpacket.h \
../retainedmessage.h \
../rwlockguard.h \
../subscriptionstore.h \
../threaddata.h \
../types.h \
../utils.h \
../logger.h \
../authplugin.h \
../session.h \
../configfileparser.h \
../sslctxmanager.h \
../timer.h \
../iowrapper.h \
../mosquittoauthoptcompatwrap.h \
../settings.h \
../listener.h \
../unscopedlock.h \
../scopedsocket.h \
../bindaddr.h \
../oneinstancelock.h \
../evpencodectxmanager.h \
../acltree.h \
../threadlocalutils.h \
../flashmq_plugin.h \
../retainedmessagesdb.h \
../persistencefile.h \
../sessionsandsubscriptionsdb.h \
../qospacketqueue.h \
../threadglobals.h \
../threadloop.h \
../publishcopyfactory.h \
../variablebyteint.h \
../mqtt5properties.h \
../globalstats.h \
../derivablecounter.h \
../packetdatatypes.h \
../flashmqtestclient.h \
mainappthread.h
LIBS += -ldl -lssl -lcrypto
QMAKE_LFLAGS += -rdynamic
QMAKE_CXXFLAGS += -msse4.2