-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
88 lines (75 loc) · 1.98 KB
/
Copy pathCMakeLists.txt
File metadata and controls
88 lines (75 loc) · 1.98 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
86
87
88
cmake_minimum_required(VERSION 3.5)
project(neo_mpc_planner2)
find_package(ament_cmake REQUIRED)
find_package(ament_cmake_python REQUIRED)
find_package(nav2_common REQUIRED)
find_package(nav2_core REQUIRED)
find_package(nav2_costmap_2d REQUIRED)
find_package(nav2_util REQUIRED)
find_package(rclcpp REQUIRED)
find_package(geometry_msgs REQUIRED)
find_package(nav_msgs 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)
find_package(neo_srvs2 REQUIRED)
find_package(rclpy REQUIRED)
set(CMAKE_CXX_STANDARD 17)
include_directories(
include
${Boost_INCLUDE_DIRS}
)
ament_python_install_package(${PROJECT_NAME})
set(library_name neo_mpc_planner2)
add_library(${library_name} SHARED
src/NeoMpcPlanner.cpp)
# Modern target_link_libraries approach for C++ dependencies only
target_link_libraries(${library_name} PUBLIC
rclcpp::rclcpp
angles::angles
${geometry_msgs_TARGETS}
${nav_msgs_TARGETS}
nav2_costmap_2d::nav2_costmap_2d_client
nav2_costmap_2d::nav2_costmap_2d_core
pluginlib::pluginlib
nav2_core::nav2_core
tf2_ros::tf2_ros
tf2_sensor_msgs::tf2_sensor_msgs
tf2_geometry_msgs::tf2_geometry_msgs
tf2_eigen::tf2_eigen
${neo_srvs2_TARGETS}
)
install(DIRECTORY include/
DESTINATION include/
)
install(FILES
neo_mpc_planner_plugin.xml
DESTINATION share
)
install(TARGETS ${library_name}
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
RUNTIME DESTINATION bin
)
install(PROGRAMS neo_mpc_planner2/mpc_optimization_server.py DESTINATION lib/${PROJECT_NAME})
ament_export_include_directories(include)
ament_export_libraries(${library_name})
ament_export_dependencies(
rclcpp
rclpy
geometry_msgs
nav2_costmap_2d
pluginlib
nav_msgs
nav2_util
nav2_core
tf2_ros
tf2_sensor_msgs
tf2_geometry_msgs
tf2_eigen
neo_srvs2
)
pluginlib_export_plugin_description_file(nav2_core neo_mpc_planner_plugin.xml)
ament_package()