-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
85 lines (83 loc) · 2.31 KB
/
CMakeLists.txt
File metadata and controls
85 lines (83 loc) · 2.31 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
set(source_files
helper/thz-directional-antenna-helper.cc
helper/thz-energy-model-helper.cc
helper/thz-helper.cc
helper/thz-mac-macro-ap-helper.cc
helper/thz-mac-macro-client-helper.cc
helper/thz-mac-macro-helper.cc
helper/thz-mac-nano-helper.cc
helper/thz-phy-macro-helper.cc
helper/thz-phy-nano-helper.cc
helper/thz-udp-client-server-helper.cc
helper/traffic-generator-helper.cc
model/thz-channel.cc
model/thz-dir-antenna.cc
model/thz-energy-model.cc
model/thz-mac-header.cc
model/thz-mac-macro-ap.cc
model/thz-mac-macro-client.cc
model/thz-mac-macro.cc
model/thz-mac-nano.cc
model/thz-net-device.cc
model/thz-phy-macro.cc
model/thz-phy-nano.cc
model/thz-spectrum-propagation-loss.cc
model/thz-spectrum-signal-parameters.cc
model/thz-spectrum-waveform.cc
model/thz-udp-client.cc
model/thz-udp-server.cc
model/thz-udp-trace-client.cc
model/traffic-generator.cc
)
set(header_files
helper/thz-directional-antenna-helper.h
helper/thz-energy-model-helper.h
helper/thz-helper.h
helper/thz-mac-macro-ap-helper.h
helper/thz-mac-macro-client-helper.h
helper/thz-mac-macro-helper.h
helper/thz-mac-nano-helper.h
helper/thz-phy-macro-helper.h
helper/thz-phy-nano-helper.h
helper/thz-udp-client-server-helper.h
helper/traffic-generator-helper.h
model/thz-channel.h
model/thz-dir-antenna.h
model/thz-energy-model.h
model/thz-mac-header.h
model/thz-mac-macro-ap.h
model/thz-mac-macro-client.h
model/thz-mac-macro.h
model/thz-mac-nano.h
model/thz-mac.h
model/thz-net-device.h
model/thz-phy-macro.h
model/thz-phy-nano.h
model/thz-phy.h
model/thz-spectrum-propagation-loss.h
model/thz-spectrum-signal-parameters.h
model/thz-spectrum-waveform.h
model/thz-udp-client.h
model/thz-udp-server.h
model/thz-udp-trace-client.h
model/traffic-generator.h
)
build_lib(
LIBNAME thz
SOURCE_FILES ${source_files}
HEADER_FILES ${header_files}
LIBRARIES_TO_LINK
${libcore}
${libpropagation}
${libinternet}
${libspectrum}
${libapplications}
${libmobility}
${libantenna}
${libnetwork}
TEST_SOURCES
test/thz-directional-antenna.cc
test/thz-path-loss.cc
test/thz-psd-macro.cc
test/thz-psd-nano.cc
)