File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
generate_parameter_library/cmake Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ target_link_libraries(minimal_node PRIVATE
63
63
rclcpp::rclcpp
64
64
turtlesim_parameters
65
65
)
66
+
67
+ install(TARGETS minimal_node turtlesim_parameters
68
+ EXPORT ${PROJECT_NAME}Targets
66
69
```
67
70
68
71
** setup.py**
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ install(
66
66
DESTINATION include /generate_parameter_library_example
67
67
)
68
68
69
- install (TARGETS minimal_publisher
69
+ install (TARGETS minimal_publisher admittance_controller_parameters
70
70
EXPORT export_generate_parameter_library_example
71
71
ARCHIVE DESTINATION lib
72
72
LIBRARY DESTINATION lib
Original file line number Diff line number Diff line change @@ -100,8 +100,6 @@ Use #include <${PROJECT_NAME}/${LIB_NAME}.hpp> instead.\")" >> ${LOCAL_PARAM_HEA
100
100
tl_expected::tl_expected
101
101
)
102
102
install (DIRECTORY ${LIB_INCLUDE_DIR} DESTINATION include )
103
- install (TARGETS ${LIB_NAME} EXPORT ${PROJECT_NAME} Targets )
104
- ament_export_targets (${PROJECT_NAME} Targets HAS_LIBRARY_TARGET )
105
103
ament_export_dependencies (fmt parameter_traits rclcpp rclcpp_lifecycle rsl tcb_span tl_expected )
106
104
endmacro ()
107
105
You can’t perform that action at this time.
0 commit comments