-
Notifications
You must be signed in to change notification settings - Fork 4
/
CMakeLists.txt
48 lines (48 loc) · 1.44 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
build_lib(
LIBNAME docsis
SOURCE_FILES
helper/docsis-helper.cc
helper/docsis-scenario-helper.cc
model/docsis-configuration.cc
model/docsis-channel.cc
model/docsis-net-device.cc
model/cm-net-device.cc
model/cmts-net-device.cc
model/docsis-header.cc
model/docsis-l4s-packet-filter.cc
model/docsis-queue-disc-item.cc
model/cmts-upstream-scheduler.cc
model/dual-queue-coupled-aqm.cc
model/queue-protection.cc
HEADER_FILES
helper/docsis-helper.h
helper/docsis-scenario-helper.h
model/cm-net-device.h
model/cmts-net-device.h
model/cmts-upstream-scheduler.h
model/docsis-channel.h
model/docsis-configuration.h
model/docsis-header.h
model/docsis-l4s-packet-filter.h
model/docsis-net-device.h
model/docsis-queue-disc-item.h
model/dual-queue-coupled-aqm.h
model/microflow-descriptor.h
model/queue-protection.h
LIBRARIES_TO_LINK ${libcore}
${libnetwork}
${libbridge}
${libpoint-to-point}
${libtraffic-control}
${libflow-monitor}
${libstats}
${libapplications}
${libcsma}
TEST_SOURCES
test/docsis-lld-test-suite.cc
test/docsis-link-test-class.cc
test/docsis-link-test-suite.cc
test/dual-queue-test.cc
test/dual-queue-coupled-aqm-test-suite.cc
test/queue-protection-test-suite.cc
)