20 lines
950 B
BlitzBasic
20 lines
950 B
BlitzBasic
|
DESCRIPTION = "The class_loader package is a ROS-independent package for loading plugins \
|
||
|
during runtime and the foundation of the higher level ROS "pluginlib" library. \
|
||
|
class_loader utilizes the host operating system's runtime loader to open \
|
||
|
runtime libraries (e.g. .so/.dll files), introspect the library for exported \
|
||
|
plugin classes, and allows users to instantiate objects of said exported \
|
||
|
classes without the explicit declaration (i.e. header file) for those classes."
|
||
|
SECTION = "devel"
|
||
|
LICENSE = "BSD"
|
||
|
LIC_FILES_CHKSUM = "file://package.xml;beginline=10;endline=10;md5=d566ef916e9dedc494f5f793a6690ba5"
|
||
|
|
||
|
DEPENDS = "cmake-modules console-bridge poco"
|
||
|
|
||
|
SRC_URI = "https://github.com/ros/${ROS_SPN}/archive/${PV}.tar.gz;downloadfilename=${ROS_SP}.tar.gz"
|
||
|
SRC_URI[md5sum] = "362dbd379ec20f2fd08f7245e002dcc2"
|
||
|
SRC_URI[sha256sum] = "7dea7c3042019cef3c42656d79feb03c97904c9e23ff7b6ec2dbcdfa256d52ad"
|
||
|
|
||
|
S = "${WORKDIR}/${ROS_SP}"
|
||
|
|
||
|
inherit catkin
|