We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62ea089 + c0452f7 commit 7423489Copy full SHA for 7423489
CMakeLists.txt
@@ -16,6 +16,11 @@ ament_auto_find_build_dependencies()
16
find_package(Qt5 REQUIRED COMPONENTS Widgets)
17
set(CMAKE_AUTOMOC ON)
18
19
+# liboctomap-dev is listed in the package.xml, but the CMake package name is octomap,
20
+# so we need to find it explicitly as ament_auto_find_build_dependencies just tries to find
21
+# it as liboctomap-dev (without finding anything)
22
+find_package(octomap REQUIRED)
23
+
24
set(octomap_rviz_plugins_headers_to_moc
25
include/octomap_rviz_plugins/occupancy_grid_display.hpp
26
include/octomap_rviz_plugins/occupancy_map_display.hpp
0 commit comments