Skip to content
Snippets Groups Projects
Commit 13b1a7f2 authored by Aurelie Clodic's avatar Aurelie Clodic
Browse files

[wip/dynamic-graph-bridge] patch install to be able to use ros facilities

patch-ac
--------
install ros executables also in share since
ros facitilies are not able to find it in bin
for now
this issue has already been raised by ros community
(e.g.  https://github.com/ros/xacro/issues/2)
should be possible to remove the patch with Hydro version (need to be tested)
parent 9e38d64c
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,9 @@ include/dynamic_graph_bridge/warning.hh
lib/dynamic_graph_bridge/robot_pose_publisher
lib/dynamic_graph_bridge/run_command
lib/dynamic_graph_bridge/tf_publisher
share/dynamic_graph_bridge/robot_pose_publisher
share/dynamic_graph_bridge/run_command
share/dynamic_graph_bridge/tf_publisher
lib/librobot_model.so
lib/libros_bridge.so
lib/libros_interpreter.so
......
......@@ -3,3 +3,4 @@ RMD160 (dynamic_graph_bridge-1.0.0.tar.gz) = 9c55c95353479bda4b5e3cde79790c18788
Size (dynamic_graph_bridge-1.0.0.tar.gz) = 101838 bytes
SHA1 (patch-aa) = 9b131ca3ce53dc8bbe54aa94cd301ddb45d49897
SHA1 (patch-ab) = acf1b743f11302c2123a49febbe48c4e53be3ef4
SHA1 (patch-ac) = 5d5cd10313d9f5e5195c8f6f2314e84eae094eaf
install ros executables also in share since
ros facitilies are not able to find it in bin
for now
this issue has already been raised by ros community
(e.g. https://github.com/ros/xacro/issues/2)
should be possible to remove the patch with Hydro version (need to be tested)
--- CMakeLists.txt-old 2013-12-20 13:22:01.741374000 +0100
+++ CMakeLists.txt 2013-12-20 13:23:06.659322000 +0100
@@ -161,5 +161,14 @@
${CMAKE_SOURCE_DIR}/scripts/tf_publisher
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
+#install ros executables also in share since
+# ros facitilies are not able to find it in bin
+# for now
+install(PROGRAMS
+ ${CMAKE_SOURCE_DIR}/scripts/robot_pose_publisher
+ ${CMAKE_SOURCE_DIR}/scripts/run_command
+ ${CMAKE_SOURCE_DIR}/scripts/tf_publisher
+ DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
+ )
SETUP_PROJECT_FINALIZE()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment