Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export moveit_py_utils' cmake target(s) #2207

Merged
merged 1 commit into from
May 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions moveit_py/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,6 @@ if(BUILD_TESTING)
endforeach()
endif()

ament_export_targets(moveit_py_utilsTargets HAS_LIBRARY_TARGET)
ament_export_dependencies(moveit_ros_planning_interface)
ament_package()
12 changes: 7 additions & 5 deletions moveit_py/src/moveit/moveit_py_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
add_library(moveit_py_utils SHARED src/copy_ros_msg.cpp
src/ros_msg_typecasters.cpp)
target_include_directories(moveit_py_utils PUBLIC include)
set_target_properties(moveit_py_utils PROPERTIES VERSION
"${${PROJECT_NAME}_VERSION}")
target_include_directories(moveit_py_utils PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include/moveit_py>
)
set_target_properties(moveit_py_utils PROPERTIES VERSION "${${PROJECT_NAME}_VERSION}")

ament_target_dependencies(moveit_py_utils rclcpp moveit_msgs geometry_msgs
pybind11)
ament_target_dependencies(moveit_py_utils rclcpp moveit_msgs geometry_msgs pybind11)

install(
TARGETS moveit_py_utils
EXPORT moveit_py_utilsTargets
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin)
Expand Down