Skip to content

Commit 7f809cc

Browse files
Fix regression by adding missing dependencies: gtest_vendor and ament_cmake_ros
1 parent 14589e5 commit 7f809cc

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ option(ENABLE_FUZZING "Enable fuzzing builds" OFF)
1818
option(USE_AFLPLUSPLUS "Use AFL++ instead of libFuzzer" OFF)
1919
option(ENABLE_DEBUG "Enable debug build with full symbols" OFF)
2020
option(FORCE_STATIC_LINKING "Force static linking of all dependencies" OFF)
21+
find_package(ament_cmake REQUIRED)
22+
find_package(gtest_vendor REQUIRED)
2123

2224
set(BASE_FLAGS "")
2325

package.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
<author>Davide Faconti</author>
1414

1515
<build_depend>ros_environment</build_depend>
16+
<build_depend>ament_cmake</build_depend>
17+
<build_depend>gtest_vendor</build_depend>
18+
19+
<exec_depend>ament_cmake</exec_depend>
20+
<exec_depend>gtest_vendor</exec_depend>
21+
1622

1723
<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend>
1824
<depend condition="$ROS_VERSION == 1">roslib</depend>

0 commit comments

Comments
 (0)