Skip to content
Snippets Groups Projects
Unverified Commit 7e124d1c authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #292 from wxmerkt/topic/ros2-integration

ROS2/Colcon integration for AMENT_PREFIX_PATH and PYTHONPATH
parents 4f6812d5 311d283e
No related branches found
No related tags found
No related merge requests found
Pipeline #20438 passed with warnings
......@@ -239,6 +239,10 @@ install(FILES package.xml DESTINATION share/eigenpy)
# Allows Colcon to find non-Ament packages when using workspace underlays
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/share/ament_index/resource_index/packages/${PROJECT_NAME} "")
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/share/ament_index/resource_index/packages/${PROJECT_NAME} DESTINATION share/ament_index/resource_index/packages)
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/share/${PROJECT_NAME}/hook/ament_prefix_path.dsv "prepend-non-duplicate;AMENT_PREFIX_PATH;")
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/share/${PROJECT_NAME}/hook/ament_prefix_path.dsv DESTINATION share/${PROJECT_NAME}/hook)
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/share/${PROJECT_NAME}/hook/python_path.dsv "prepend-non-duplicate;PYTHONPATH;${PYTHON_SITELIB}")
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/share/${PROJECT_NAME}/hook/python_path.dsv DESTINATION share/${PROJECT_NAME}/hook)
# ----------------------------------------------------
# --- PYTHON LIBRARY ---------------------------------
......
Subproject commit 63a6aaf17f0cc2b32fd41cfa012aabbac3cb007e
Subproject commit 9d20c6f79ef9f717ea9e8c549ec2d239b8d406a3
{
"hooks": [
"share/eigenpy/hook/ament_prefix_path.dsv",
"share/eigenpy/hook/python_path.dsv"
]
}
\ No newline at end of file
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