-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathCMakeLists.txt
65 lines (60 loc) · 1.18 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
55
56
57
58
59
60
61
62
63
64
65
build_lib_example(
NAME interference-pattern
SOURCE_FILES interference-pattern/mygym.cc
interference-pattern/sim.cc
LIBRARIES_TO_LINK
${libcore}
${libinternet}
${libopengym}
${libwifi}
)
build_lib_example(
NAME linear-mesh
SOURCE_FILES linear-mesh/sim.cc
LIBRARIES_TO_LINK
${libapplications}
${libcore}
${libinternet}
${libopengym}
${libwifi}
)
build_lib_example(
NAME linear-mesh-2
SOURCE_FILES linear-mesh-2/sim.cc
linear-mesh-2/mygym.cc
LIBRARIES_TO_LINK
${libapplications}
${libcore}
${libinternet}
${libopengym}
${libwifi}
)
build_lib_example(
NAME opengym
SOURCE_FILES opengym/sim.cc
LIBRARIES_TO_LINK
${libcore}
${libopengym}
)
build_lib_example(
NAME opengym-2
SOURCE_FILES opengym-2/sim.cc
opengym-2/mygym.cc
LIBRARIES_TO_LINK
${libcore}
${libopengym}
)
build_lib_example(
NAME rl-tcp
SOURCE_FILES rl-tcp/sim.cc
rl-tcp/tcp-rl-env.cc
rl-tcp/tcp-rl.cc
LIBRARIES_TO_LINK
${libapplications}
${libcore}
${libflow-monitor}
${libinternet}
${libopengym}
${libpoint-to-point-layout}
${libptp}
)