Remove the declaration of a library from kdl_parser_py. (#14)
* Remove the declaration of a library from kdl_parser_py. It does not install a library, so it shouldn't declare it here. Also fix up the dependencies to be more correct, since it really requires urdfdom_py, not urdf. It also needs a <build_depend> on urdfdom_py now. Signed-off-by: Chris Lalancette <clalancette@openrobotics.org> * Remove COMPONENT udfdom_py. Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
This commit is contained in:
parent
c92eabb4e9
commit
ef8d6e4640
|
@ -2,13 +2,10 @@ cmake_minimum_required(VERSION 2.8.3)
|
|||
|
||||
project(kdl_parser_py)
|
||||
|
||||
find_package(catkin REQUIRED
|
||||
COMPONENTS urdf
|
||||
)
|
||||
find_package(catkin REQUIRED)
|
||||
|
||||
catkin_package(
|
||||
LIBRARIES ${PROJECT_NAME}
|
||||
CATKIN_DEPENDS urdf
|
||||
CATKIN_DEPENDS urdfdom_py
|
||||
)
|
||||
|
||||
catkin_python_setup()
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?xml version="1.0"?>
|
||||
<package format="2">
|
||||
<name>kdl_parser_py</name>
|
||||
<version>1.13.0</version>
|
||||
|
|
Loading…
Reference in New Issue