From 1908b940ef9e0944c780cfa37cae5b1f6b8df81e Mon Sep 17 00:00:00 2001 From: Florent Lamiraux <florent@laas.fr> Date: Thu, 19 Dec 2019 17:50:44 +0100 Subject: [PATCH] Add dependency to bullet. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d81c34..52906b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,6 +80,7 @@ dynamic_graph_bridge_msgs) add_required_dependency(roscpp) add_required_dependency(tf2_ros) add_required_dependency("realtime_tools >= 1.8") +add_required_dependency(bullet) add_required_dependency(tf2_bullet) ADD_REQUIRED_DEPENDENCY("dynamic-graph >= 3.0.0") @@ -118,6 +119,7 @@ macro(compile_plugin NAME) pkg_config_use_dependency(${NAME} dynamic-graph) pkg_config_use_dependency(${NAME} sot-core) pkg_config_use_dependency(${NAME} dynamic_graph_bridge_msgs) + pkg_config_use_dependency(${NAME} bullet) add_dependencies(${NAME} ros_bridge) target_link_libraries(${NAME} ros_bridge) set_target_properties(${NAME} PROPERTIES BUILD_WITH_INSTALL_RPATH True) -- GitLab