Skip to content

Commit

Permalink
Add moveit_kinematics dependency to generated IKFast plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Jan 20, 2025
1 parent c37dc3c commit 8937af5
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,19 @@ def update_ikfast_package(args):
build_deps = [
"liblapack-dev",
"moveit_core",
"moveit_kinematics",
"pluginlib",
"rclcpp",
"tf2_kdl",
"tf2_eigen",
]
run_deps = ["liblapack-dev", "moveit_core", "pluginlib", "rclcpp"]
run_deps = [
"liblapack-dev",
"moveit_core",
"moveit_kinematics",
"pluginlib",
"rclcpp",
]

update_deps(build_deps, "build_depend", package_xml)
update_deps(run_deps, "exec_depend", package_xml)
Expand Down

0 comments on commit 8937af5

Please sign in to comment.