Skip to content

Fix regression by adding missing dependencies: gtest_vendor and ament… #962

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ option(ENABLE_FUZZING "Enable fuzzing builds" OFF)
option(USE_AFLPLUSPLUS "Use AFL++ instead of libFuzzer" OFF)
option(ENABLE_DEBUG "Enable debug build with full symbols" OFF)
option(FORCE_STATIC_LINKING "Force static linking of all dependencies" OFF)
find_package(ament_cmake REQUIRED)
find_package(gtest_vendor REQUIRED)

set(BASE_FLAGS "")

Expand Down
6 changes: 6 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
<author>Davide Faconti</author>

<build_depend>ros_environment</build_depend>
<build_depend>ament_cmake</build_depend>
<build_depend>gtest_vendor</build_depend>

<exec_depend>ament_cmake</exec_depend>
<exec_depend>gtest_vendor</exec_depend>


<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend>
<depend condition="$ROS_VERSION == 1">roslib</depend>
Expand Down
Loading