-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch nav2_amcl to use modern CMake idioms. (#4564)
This change is a little unusual in that it does rearrange the hierarchy of CMakeLists.txt files. This is because the individual libraries (like map_lib) are used in some of the other libraries, and CMake was complaining about that. So I flattened the whole thing out and now build all of the libraries at the top-level. This PR also contains a couple of fixes to previous packages where I failed to properly export the include directory. Finally, this PR goes ahead and removes quite a bit of dead code from this package. This has been dead for quite a while, so I think it makes sense to remove it at this point. Signed-off-by: Chris Lalancette <[email protected]>
- Loading branch information
1 parent
4516a6a
commit ca1fce1
Showing
23 changed files
with
166 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,27 +15,30 @@ | |
'amcl' Player driver. | ||
</p> | ||
</description> | ||
<!-- <author>Brian P. Gerkey</author> | ||
<author>[email protected]</author> --> | ||
<maintainer email="[email protected]">Mohammad Haghighipanah</maintainer> | ||
<license>LGPL-2.1-or-later</license> | ||
|
||
<author>Brian P. Gerkey</author> | ||
<author>[email protected]</author> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<build_depend>nav2_common</build_depend> | ||
<depend>rclcpp</depend> | ||
<depend>tf2_geometry_msgs</depend> | ||
|
||
<depend>geometry_msgs</depend> | ||
<depend>message_filters</depend> | ||
<depend>nav_msgs</depend> | ||
<depend>nav2_msgs</depend> | ||
<depend>nav2_util</depend> | ||
<depend>pluginlib</depend> | ||
<depend>rclcpp</depend> | ||
<depend>rclcpp_components</depend> | ||
<depend>rclcpp_lifecycle</depend> | ||
<depend>sensor_msgs</depend> | ||
<depend>std_srvs</depend> | ||
<depend>tf2_ros</depend> | ||
<depend>tf2</depend> | ||
<depend>nav2_util</depend> | ||
<depend>nav2_msgs</depend> | ||
<depend>launch_ros</depend> | ||
<depend>launch_testing</depend> | ||
<depend>pluginlib</depend> | ||
<depend>tf2_geometry_msgs</depend> | ||
<depend>tf2_ros</depend> | ||
|
||
<test_depend>ament_lint_common</test_depend> | ||
<test_depend>ament_lint_auto</test_depend> | ||
|
||
|
Oops, something went wrong.