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

Fix install bug with plugins xml #6

Open
wants to merge 2 commits into
base: ament-socketcan-interface
Choose a base branch
from
Open
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
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ env:
global:
- CCACHE_DIR=$HOME/.ccache
matrix:
- ROS_DISTRO="crystal" ROS_REPO=testing UPSTREAM_WORKSPACE="github:ament/ament_lint#dashing"
- ROS_DISTRO="crystal" ROS_REPO=main UPSTREAM_WORKSPACE="github:ament/ament_lint#dashing"
- ROS_DISTRO="dashing" ROS_REPO=testing
- ROS_DISTRO="dashing" ROS_REPO=main
- ROS_DISTRO="eloquent" ROS_REPO=testing
- ROS_DISTRO="foxy" ROS_REPO=testing
- ROS_DISTRO="foxy" ROS_REPO=main

install:
- git clone --quiet --depth=1 https://github.com/ros-industrial/industrial_ci.git .industrial_ci -b master
Expand Down
2 changes: 1 addition & 1 deletion socketcan_interface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ target_link_libraries(${PROJECT_NAME}_plugin
)

class_loader_hide_library_symbols(${PROJECT_NAME}_plugin)
install(FILES socketcan_interface_plugin.xml DESTINATION share/${PROJECT_NAME}/socketcan_interface_plugin.xml)
install(FILES socketcan_interface_plugin.xml DESTINATION share/${PROJECT_NAME}/)
ament_index_register_resource(socketcan_interface__pluginlib__plugin CONTENT "share/${PROJECT_NAME}/socketcan_interface_plugin.xml\n")

ament_export_dependencies(
Expand Down