-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCMakeLists.txt
69 lines (55 loc) · 1.75 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
cmake_minimum_required(VERSION 3.5)
project(buildfarm_perf_tests)
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
find_package(rclcpp REQUIRED)
add_executable(node_spinning src/node_spinning.cpp)
ament_target_dependencies(
node_spinning
"rclcpp"
)
install(TARGETS node_spinning
EXPORT export_${PROJECT_NAME}
DESTINATION lib/${PROJECT_NAME})
option(ENABLE_SYSTEM_METRIC_COLLECTOR
"Enables the system metric collector and tests which use it" ${UNIX})
if(ENABLE_SYSTEM_METRIC_COLLECTOR)
find_package(Threads REQUIRED)
add_executable(system_metric_collector
src/linux_cpu_process_measurement.cpp
src/linux_cpu_system_measurement.cpp
src/linux_memory_process_measurement.cpp
src/linux_memory_system_measurement.cpp
src/main_measurements.cpp
src/utilities/utilities.cpp
)
target_include_directories(system_metric_collector PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>)
target_link_libraries(system_metric_collector
"stdc++fs"
${CMAKE_THREAD_LIBS_INIT}
)
install(TARGETS system_metric_collector
EXPORT export_${PROJECT_NAME}
DESTINATION lib/${PROJECT_NAME})
endif()
ament_python_install_package(${PROJECT_NAME})
install(DIRECTORY templates
DESTINATION share/${PROJECT_NAME})
install(PROGRAMS scripts/generate_config_yaml.py
DESTINATION lib/${PROJECT_NAME})
if(BUILD_TESTING)
find_package(ament_lint_auto REQUIRED)
ament_lint_auto_find_test_dependencies()
add_subdirectory(test)
endif()
ament_package()