forked from neobotix/neo_local_planner2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
64 lines (51 loc) · 1.24 KB
/
CMakeLists.txt
File metadata and controls
64 lines (51 loc) · 1.24 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
cmake_minimum_required(VERSION 3.5)
project(neo_local_planner2)
find_package(ament_cmake REQUIRED)
find_package(nav2_core REQUIRED)
find_package(nav2_costmap_2d REQUIRED)
find_package(nav2_util REQUIRED)
find_package(rclcpp REQUIRED)
find_package(pluginlib REQUIRED)
find_package(tf2_eigen REQUIRED)
find_package(tf2_ros REQUIRED)
find_package(tf2_sensor_msgs REQUIRED)
find_package(tf2_geometry_msgs REQUIRED)
set(CMAKE_CXX_STANDARD 14)
include_directories(
include
)
set(dependencies
rclcpp
geometry_msgs
nav2_costmap_2d
pluginlib
nav2_util
nav2_core
tf2_ros
tf2_sensor_msgs
tf2_geometry_msgs
tf2_eigen
)
set(library_name neo_local_planner2)
add_library(${library_name} SHARED
src/NeoLocalPlanner.cpp)
ament_target_dependencies(${library_name}
${dependencies}
)
install(DIRECTORY include/
DESTINATION include/
)
install(FILES
neo_local_planner2_plugin.xml
DESTINATION share
)
install(TARGETS ${library_name}
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin
)
ament_export_include_directories(include)
ament_export_libraries(${library_name})
ament_export_dependencies(${dependencies})
pluginlib_export_plugin_description_file(nav2_core neo_local_planner2_plugin.xml)
ament_package()