File tree 12 files changed +0
-57
lines changed
nav2_regulated_pure_pursuit_controller
12 files changed +0
-57
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ add_library(${library_name}
32
32
src/nav2_controller.cpp
33
33
)
34
34
35
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
36
-
37
35
set (dependencies
38
36
angles
39
37
rclcpp
@@ -49,27 +47,18 @@ set(dependencies
49
47
50
48
add_library (simple_progress_checker SHARED plugins/simple_progress_checker.cpp)
51
49
ament_target_dependencies(simple_progress_checker ${dependencies} )
52
- # prevent pluginlib from using boost
53
- target_compile_definitions (simple_progress_checker PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
54
50
55
51
add_library (simple_goal_checker SHARED plugins/simple_goal_checker.cpp)
56
52
ament_target_dependencies(simple_goal_checker ${dependencies} )
57
- # prevent pluginlib from using boost
58
- target_compile_definitions (simple_goal_checker PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
59
53
60
54
add_library (stopped_goal_checker SHARED plugins/stopped_goal_checker.cpp)
61
55
target_link_libraries (stopped_goal_checker simple_goal_checker)
62
56
ament_target_dependencies(stopped_goal_checker ${dependencies} )
63
- # prevent pluginlib from using boost
64
- target_compile_definitions (stopped_goal_checker PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
65
57
66
58
ament_target_dependencies(${library_name}
67
59
${dependencies}
68
60
)
69
61
70
- # prevent pluginlib from using boost
71
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
72
-
73
62
if (BUILD_TESTING)
74
63
find_package (ament_lint_auto REQUIRED)
75
64
# the following line skips the linter which checks for copyrights
Original file line number Diff line number Diff line change @@ -52,9 +52,6 @@ add_library(nav2_costmap_2d_core SHARED
52
52
plugins/costmap_filters/costmap_filter.cpp
53
53
)
54
54
55
- # prevent pluginlib from using boost
56
- target_compile_definitions (nav2_costmap_2d_core PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
57
-
58
55
set (dependencies
59
56
geometry_msgs
60
57
laser_geometry
Original file line number Diff line number Diff line change @@ -48,9 +48,6 @@ add_library(dwb_core SHARED
48
48
src/trajectory_utils.cpp
49
49
)
50
50
51
- # prevent pluginlib from using boost
52
- target_compile_definitions (dwb_core PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
53
-
54
51
ament_target_dependencies(dwb_core
55
52
${dependencies}
56
53
)
Original file line number Diff line number Diff line change @@ -36,9 +36,6 @@ add_library(${PROJECT_NAME} SHARED
36
36
src/twirling.cpp
37
37
)
38
38
39
- # prevent pluginlib from using boost
40
- target_compile_definitions (${PROJECT_NAME} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
41
-
42
39
set (dependencies
43
40
angles
44
41
nav2_costmap_2d
Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ add_library(standard_traj_generator SHARED
33
33
src/kinematic_parameters.cpp
34
34
src/xy_theta_iterator.cpp)
35
35
ament_target_dependencies(standard_traj_generator ${dependencies} )
36
- # prevent pluginlib from using boost
37
- target_compile_definitions (standard_traj_generator PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
38
36
39
37
40
38
if (BUILD_TESTING)
Original file line number Diff line number Diff line change @@ -52,9 +52,6 @@ ament_target_dependencies(${library_name}
52
52
${dependencies}
53
53
)
54
54
55
- # prevent pluginlib from using boost
56
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
57
-
58
55
pluginlib_export_plugin_description_file(nav2_core global_planner_plugin.xml)
59
56
60
57
install (TARGETS ${library_name}
Original file line number Diff line number Diff line change @@ -52,8 +52,6 @@ ament_target_dependencies(${library_name}
52
52
${dependencies}
53
53
)
54
54
55
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
56
-
57
55
add_executable (${executable_name}
58
56
src/main.cpp
59
57
)
@@ -64,9 +62,6 @@ ament_target_dependencies(${executable_name}
64
62
${dependencies}
65
63
)
66
64
67
- # prevent pluginlib from using boost
68
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
69
-
70
65
install (TARGETS ${library_name}
71
66
ARCHIVE DESTINATION lib
72
67
LIBRARY DESTINATION lib
Original file line number Diff line number Diff line change @@ -53,9 +53,6 @@ ament_target_dependencies(nav2_spin_recovery
53
53
${dependencies}
54
54
)
55
55
56
- # prevent pluginlib from using boost
57
- target_compile_definitions (nav2_spin_recovery PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
58
-
59
56
add_library (nav2_backup_recovery SHARED
60
57
plugins/back_up.cpp
61
58
)
@@ -64,9 +61,6 @@ ament_target_dependencies(nav2_backup_recovery
64
61
${dependencies}
65
62
)
66
63
67
- # prevent pluginlib from using boost
68
- target_compile_definitions (nav2_backup_recovery PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
69
-
70
64
add_library (nav2_wait_recovery SHARED
71
65
plugins/wait.cpp
72
66
)
@@ -75,9 +69,6 @@ ament_target_dependencies(nav2_wait_recovery
75
69
${dependencies}
76
70
)
77
71
78
- # prevent pluginlib from using boost
79
- target_compile_definitions (nav2_wait_recovery PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
80
-
81
72
pluginlib_export_plugin_description_file(nav2_core recovery_plugin.xml)
82
73
83
74
# Library
@@ -89,9 +80,6 @@ ament_target_dependencies(${library_name}
89
80
${dependencies}
90
81
)
91
82
92
- # prevent pluginlib from using boost
93
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
94
-
95
83
# Executable
96
84
add_executable (${executable_name}
97
85
src/main.cpp
Original file line number Diff line number Diff line change @@ -35,9 +35,6 @@ set(library_name nav2_regulated_pure_pursuit_controller)
35
35
add_library (${library_name} SHARED
36
36
src/regulated_pure_pursuit_controller.cpp)
37
37
38
- # prevent pluginlib from using boost
39
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
40
-
41
38
ament_target_dependencies(${library_name}
42
39
${dependencies}
43
40
)
Original file line number Diff line number Diff line change @@ -91,9 +91,6 @@ target_link_libraries(${library_name}
91
91
# TODO: Make this specific to this project (not rviz default plugins)
92
92
target_compile_definitions (${library_name} PRIVATE "RVIZ_DEFAULT_PLUGINS_BUILDING_LIBRARY" )
93
93
94
- # prevent pluginlib from using boost
95
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
96
-
97
94
pluginlib_export_plugin_description_file(rviz_common plugins_description.xml)
98
95
99
96
install (
Original file line number Diff line number Diff line change @@ -97,9 +97,6 @@ ament_target_dependencies(${library_name}_2d
97
97
${dependencies}
98
98
)
99
99
100
- target_compile_definitions (${library_name} PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
101
- target_compile_definitions (${library_name} _2d PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
102
-
103
100
pluginlib_export_plugin_description_file(nav2_core smac_plugin.xml)
104
101
pluginlib_export_plugin_description_file(nav2_core smac_plugin_2d.xml)
105
102
Original file line number Diff line number Diff line change @@ -69,18 +69,12 @@ ament_target_dependencies(${library_name}
69
69
70
70
add_library (wait_at_waypoint SHARED plugins/wait_at_waypoint.cpp)
71
71
ament_target_dependencies(wait_at_waypoint ${dependencies} )
72
- #prevent pluginlib from using boost
73
- target_compile_definitions (wait_at_waypoint PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
74
72
75
73
add_library (photo_at_waypoint SHARED plugins/photo_at_waypoint.cpp)
76
74
ament_target_dependencies(photo_at_waypoint ${dependencies} )
77
- #prevent pluginlib from using boost
78
- target_compile_definitions (photo_at_waypoint PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
79
75
80
76
add_library (input_at_waypoint SHARED plugins/input_at_waypoint.cpp)
81
77
ament_target_dependencies(input_at_waypoint ${dependencies} )
82
- #prevent pluginlib from using boost
83
- target_compile_definitions (input_at_waypoint PUBLIC "PLUGINLIB__DISABLE_BOOST_FUNCTIONS" )
84
78
85
79
install (TARGETS ${library_name} wait_at_waypoint photo_at_waypoint input_at_waypoint
86
80
ARCHIVE DESTINATION lib
You can’t perform that action at this time.
0 commit comments