71 lines
2.8 KiB
BlitzBasic
71 lines
2.8 KiB
BlitzBasic
# Generated by superflore -- DO NOT EDIT
|
|
#
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
inherit ros_distro_${ROS_DISTRO}
|
|
inherit ros_superflore_generated
|
|
|
|
DESCRIPTION = "voxel_grid provides an implementation of an efficient 3D voxel grid. The occupancy grid can support 3 different representations for the state of a cell: marked, free, or unknown. Due to the underlying implementation relying on bitwise and and or integer operations, the voxel grid only supports 16 different levels per voxel column. However, this limitation yields raytracing and cell marking performance in the grid comparable to standard 2D structures making it quite fast compared to most 3D structures."
|
|
AUTHOR = "Carl Delsey <carl.r.delsey@intel.com>"
|
|
HOMEPAGE = "https://wiki.ros.org"
|
|
SECTION = "devel"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://package.xml;beginline=10;endline=10;md5=d566ef916e9dedc494f5f793a6690ba5"
|
|
|
|
ROS_CN = "navigation2"
|
|
ROS_BPN = "nav2_voxel_grid"
|
|
|
|
ROS_BUILD_DEPENDS = " \
|
|
nav2-common \
|
|
rclcpp \
|
|
"
|
|
|
|
ROS_BUILDTOOL_DEPENDS = " \
|
|
ament-cmake-native \
|
|
"
|
|
|
|
ROS_EXPORT_DEPENDS = " \
|
|
rclcpp \
|
|
"
|
|
|
|
ROS_BUILDTOOL_EXPORT_DEPENDS = ""
|
|
|
|
ROS_EXEC_DEPENDS = " \
|
|
rclcpp \
|
|
"
|
|
|
|
# Currently informational only -- see http://www.ros.org/reps/rep-0149.html#dependency-tags.
|
|
ROS_TEST_DEPENDS = " \
|
|
ament-cmake-gtest \
|
|
ament-cmake-pytest \
|
|
ament-lint-auto \
|
|
ament-lint-common \
|
|
launch \
|
|
launch-testing \
|
|
"
|
|
|
|
DEPENDS = "${ROS_BUILD_DEPENDS} ${ROS_BUILDTOOL_DEPENDS}"
|
|
# Bitbake doesn't support the "export" concept, so build them as if we needed them to build this package (even though we actually
|
|
# don't) so that they're guaranteed to have been staged should this package appear in another's DEPENDS.
|
|
DEPENDS += "${ROS_EXPORT_DEPENDS} ${ROS_BUILDTOOL_EXPORT_DEPENDS}"
|
|
|
|
RDEPENDS_${PN} += "${ROS_EXEC_DEPENDS}"
|
|
|
|
SRC_URI = "https://github.com/SteveMacenski/navigation2-release/archive/release/crystal/nav2_voxel_grid/0.1.7-0.tar.gz;downloadfilename=${ROS_SP}.tar.gz"
|
|
SRC_URI[md5sum] = "7dfa45fd451186f90bb278b5f68dd751"
|
|
SRC_URI[sha256sum] = "e5fc2f003f86f1f6d180375dce15de6af9f80f8ac943daed4d4ce4bb178ec2c5"
|
|
S = "${WORKDIR}/navigation2-release-release-crystal-nav2_voxel_grid-0.1.7-0"
|
|
|
|
ROS_COMPONENT_TYPE = "${@ros_distro__get_component_type('navigation2', d)}"
|
|
ROS_BUILD_TYPE = "ament_cmake"
|
|
|
|
# Allow the above settings to be overridden.
|
|
ROS_INCLUDES_TREE := "${@ros_superflore_generated__get_includes_tree('navigation2', d)}"
|
|
include ${ROS_LAYERDIR}/${ROS_INCLUDES_TREE}/navigation2/navigation2_common.inc
|
|
include ${ROS_LAYERDIR}/${ROS_INCLUDES_TREE}/navigation2/navigation2-${PV}_common.inc
|
|
include ${ROS_LAYERDIR}/${ROS_INCLUDES_TREE}/navigation2/${BPN}.inc
|
|
include ${ROS_LAYERDIR}/${ROS_INCLUDES_TREE}/navigation2/${BPN}-${PV}.inc
|
|
|
|
inherit ${ROS_COMPONENT_TYPE}_component
|
|
inherit ros_${ROS_BUILD_TYPE}
|