-
Notifications
You must be signed in to change notification settings - Fork 30
/
CMakeLists.txt
54 lines (54 loc) · 1.57 KB
/
CMakeLists.txt
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
build_lib(
LIBNAME quic
SOURCE_FILES
model/quic-congestion-ops.cc
model/quic-socket.cc
model/quic-socket-base.cc
model/quic-socket-factory.cc
model/quic-l4-protocol.cc
model/quic-socket-rx-buffer.cc
model/quic-socket-tx-buffer.cc
model/quic-socket-tx-scheduler.cc
model/quic-socket-tx-pfifo-scheduler.cc
model/quic-socket-tx-edf-scheduler.cc
model/quic-stream.cc
model/quic-stream-base.cc
model/quic-l5-protocol.cc
model/quic-stream-tx-buffer.cc
model/quic-stream-rx-buffer.cc
model/quic-header.cc
model/quic-subheader.cc
model/quic-transport-parameters.cc
model/quic-bbr.cc
helper/quic-helper.cc
HEADER_FILES
model/quic-congestion-ops.h
model/quic-socket.h
model/quic-socket-base.h
model/quic-socket-factory.h
model/quic-l4-protocol.h
model/quic-socket-rx-buffer.h
model/quic-socket-tx-buffer.h
model/quic-socket-tx-scheduler.h
model/quic-socket-tx-pfifo-scheduler.h
model/quic-socket-tx-edf-scheduler.h
model/quic-stream.h
model/quic-stream-base.h
model/quic-l5-protocol.h
model/quic-stream-tx-buffer.h
model/quic-stream-rx-buffer.h
model/quic-header.h
model/quic-subheader.h
model/quic-transport-parameters.h
model/quic-bbr.h
helper/quic-helper.h
model/windowed-filter.h
LIBRARIES_TO_LINK ${libinternet}
${libapplications}
${libflow-monitor}
${libpoint-to-point}
TEST_SOURCES
test/quic-rx-buffer-test.cc
test/quic-tx-buffer-test.cc
test/quic-header-test.cc
)