Skip to content

Commit

Permalink
Fix ikfast package template (#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
JafarAbdi committed May 23, 2023
1 parent 15b2331 commit 21036b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Expand Up @@ -233,6 +233,9 @@ def create_ikfast_package(args):
xmlElement("maintainer", email="%s@todo.todo" % user_name, text=user_name)
)
root.append(xmlElement("buildtool_depend", text="ament_cmake"))
export = xmlElement("export")
export.append(xmlElement("build_type", text="ament_cmake"))
root.append(export)
etree.ElementTree(root).write(
pkg_xml_path, xml_declaration=True, pretty_print=True, encoding="UTF-8"
)
Expand Down
Expand Up @@ -32,6 +32,7 @@ ament_target_dependencies(${IKFAST_LIBRARY_NAME}
tf2_kdl
orocos_kdl
tf2_eigen
LAPACK
)
# suppress warnings about unused variables in OpenRave's solver code
target_compile_options(${IKFAST_LIBRARY_NAME} PRIVATE -Wno-unused-variable -Wno-unused-parameter)
Expand Down

0 comments on commit 21036b5

Please sign in to comment.