-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
70 lines (63 loc) · 1.32 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
66
67
68
69
70
add_library (config configs/config.cc)
add_library (backend_config configs/aggregator_config.cc)
add_library (proxy_config configs/proxy_config.cc)
add_library (aggregator_worker workers/aggregator/worker.cc)
add_library (proxy_worker workers/proxy/worker.cc)
add_library (ledger ledger.cc)
add_executable (statsdcc aggregator.cc)
# link libraries
target_link_libraries (statsdcc
tcp_server
udp_server
ros_server
aggregator_http_server
status
aggregator_consumer
aggregator_worker
ledger
carbon
stdout
repeater
hashring
statsdccnet
backend_config
config
logger
${CRYPTO}
${JSONCPP}
${Boost_LIBRARIES}
${TCMALLOC_MINIMAL}
${MICROHTTPD}
${catkin_LIBRARIES}
pthread
)
add_executable (proxy proxy.cc)
target_link_libraries (proxy
proxy_http_server
tcp_server
udp_server
ros_server
status
statsdccnet
proxy_worker
proxy_config
statsdccnet
config
logger
${JSONCPP}
${Boost_LIBRARIES}
${TCMALLOC_MINIMAL}
${MICROHTTPD}
pthread
)
#############
## Install ##
#############
install(
TARGETS
config backend_config proxy_config aggregator_worker
proxy_worker ledger statsdcc proxy
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)