File tree 4 files changed +12
-5
lines changed
4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 25
25
ros_distribution : galactic
26
26
ros_version : 2
27
27
# Rolling Ridley (June 2020 - Present)
28
- - docker_image : rostooling/setup-ros-docker:ubuntu-focal -ros-rolling-ros-base-latest
28
+ - docker_image : rostooling/setup-ros-docker:ubuntu-jammy -ros-rolling-ros-base-latest
29
29
ros_distribution : rolling
30
30
ros_version : 2
31
31
container :
Original file line number Diff line number Diff line change @@ -12,11 +12,17 @@ endif()
12
12
13
13
find_package (ament_cmake_auto REQUIRED)
14
14
ament_auto_find_build_dependencies()
15
+ find_package (OCTOMAP REQUIRED)
15
16
16
17
ament_auto_add_library(${PROJECT_NAME} SHARED
17
18
src/conversions.cpp
18
19
)
19
20
21
+ target_include_directories (${PROJECT_NAME}
22
+ PUBLIC
23
+ ${OCTOMAP_INCLUDE_DIRS}
24
+ )
25
+
20
26
if (BUILD_TESTING)
21
27
find_package (ament_lint_auto REQUIRED)
22
28
ament_lint_auto_find_test_dependencies()
Original file line number Diff line number Diff line change 39
39
40
40
#include < octomap/octomap.h>
41
41
42
- #include < geometry_msgs/msg/point.hpp>
43
- #include < sensor_msgs/msg/point_cloud2.hpp>
44
42
#include < tf2/LinearMath/Quaternion.h>
45
43
#include < tf2/LinearMath/Transform.h>
46
44
#include < tf2/LinearMath/Vector3.h>
47
45
46
+ #include < geometry_msgs/msg/point.hpp>
47
+ #include < sensor_msgs/msg/point_cloud2.hpp>
48
+
48
49
namespace octomap
49
50
{
50
51
/* *
Original file line number Diff line number Diff line change 26
26
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
27
// POSSIBILITY OF SUCH DAMAGE.
28
28
29
+ #include < gtest/gtest.h>
30
+
29
31
#include < sensor_msgs/point_cloud2_iterator.hpp>
30
32
31
33
#include < octomap_ros/conversions.hpp>
32
34
33
- #include < gtest/gtest.h>
34
-
35
35
constexpr double epsilon = 1e-6 ;
36
36
37
37
TEST (conversions, pointOctomapToMsg)
You can’t perform that action at this time.
0 commit comments