forked from dedis/Dissent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.pro
91 lines (89 loc) · 3.79 KB
/
test.pro
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
include(dissent.pro)
TEMPLATE = app
TARGET = test
DEPENDPATH += ext/googletest/src \
ext/googletest/include/gtest \
ext/googletest/include/gtest/internal
INCLUDEPATH += src \
ext/googletest \
ext/googletest/include
#DEFINES += QT_NO_DEBUG_OUTPUT
#DEFINES += QT_NO_WARNING_OUTPUT
DEFINES += DISSENT_TEST
# Input
HEADERS += ext/googletest/include/gtest/gtest-death-test.h \
ext/googletest/include/gtest/gtest-message.h \
ext/googletest/include/gtest/gtest-param-test.h \
ext/googletest/include/gtest/gtest-printers.h \
ext/googletest/include/gtest/gtest-spi.h \
ext/googletest/include/gtest/gtest-test-part.h \
ext/googletest/include/gtest/gtest-typed-test.h \
ext/googletest/include/gtest/gtest.h \
ext/googletest/include/gtest/gtest_pred_impl.h \
ext/googletest/include/gtest/gtest_prod.h \
ext/googletest/include/gtest/internal/gtest-death-test-internal.h \
ext/googletest/include/gtest/internal/gtest-filepath.h \
ext/googletest/include/gtest/internal/gtest-internal.h \
ext/googletest/include/gtest/internal/gtest-linked_ptr.h \
ext/googletest/include/gtest/internal/gtest-param-util-generated.h \
ext/googletest/include/gtest/internal/gtest-param-util.h \
ext/googletest/include/gtest/internal/gtest-port.h \
ext/googletest/include/gtest/internal/gtest-string.h \
ext/googletest/include/gtest/internal/gtest-tuple.h \
ext/googletest/include/gtest/internal/gtest-type-util.h \
src/Tests/AbstractGroupHelpers.hpp \
src/Tests/BadCSBulkRound.hpp \
src/Tests/BulkRoundHelpers.hpp \
src/Tests/DissentTest.hpp \
src/Tests/Mock.hpp \
src/Tests/MockEdgeHandler.hpp \
src/Tests/MockSender.hpp \
src/Tests/MockSource.hpp \
src/Tests/OverlayHelper.hpp \
src/Tests/RoundTest.hpp \
src/Tests/RpcTest.hpp \
src/Tests/ShuffleRoundHelpers.hpp \
src/Tests/TestNode.hpp
SOURCES += ext/googletest/src/gtest-all.cc \
src/Tests/AddressTest.cpp \
src/Tests/AuthenticateTest.cpp \
src/Tests/Base64.cpp \
src/Tests/BasicGossipTest.cpp \
src/Tests/BlogDropProof.cpp \
src/Tests/BlogDropTest.cpp \
src/Tests/BlogDropUtilsTest.cpp \
src/Tests/BlogDropRoundTest.cpp \
src/Tests/BuddiesTest.cpp \
src/Tests/BulkRoundTest.cpp \
src/Tests/ConnectionTest.cpp \
src/Tests/Crypto.cpp \
src/Tests/CSBulkRoundTest.cpp \
src/Tests/CSOverlayTest.cpp \
src/Tests/DsaCryptoTest.cpp \
src/Tests/EdgeTest.cpp \
src/Tests/GroupTest.cpp \
src/Tests/HashTest.cpp \
src/Tests/IdTest.cpp \
src/Tests/IntegerTest.cpp \
src/Tests/KeyShareTest.cpp \
src/Tests/LogTest.cpp \
src/Tests/MainTest.cpp \
src/Tests/NeffKeyShuffleTest.cpp \
src/Tests/NeffShuffleRoundTest.cpp \
src/Tests/NullRoundTest.cpp \
src/Tests/OnionTest.cpp \
src/Tests/OverlayHelper.cpp \
src/Tests/PeerReviewTest.cpp \
src/Tests/RandomTest.cpp \
src/Tests/RepeatingBulkRoundTest.cpp \
src/Tests/RpcTest.cpp \
src/Tests/RoundTest.cpp \
src/Tests/SerializationTest.cpp \
src/Tests/SettingsTest.cpp \
src/Tests/ShuffleRoundTest.cpp \
src/Tests/TcpTest.cpp \
src/Tests/TestNode.cpp \
src/Tests/TimeTest.cpp \
src/Tests/TripleTest.cpp \
src/Tests/TunnelTest.cpp \
src/Tests/WebTest.cpp