@@ -64,19 +64,29 @@ set(CONTROL_FILTERS_INCLUDE_DEPENDS
64
64
tf2_ros
65
65
)
66
66
67
+ foreach (Dependency IN ITEMS ${CONTROL_FILTERS_INCLUDE_DEPENDS} )
68
+ find_package (${Dependency} REQUIRED)
69
+ endforeach ()
70
+
71
+ generate_parameter_library(
72
+ gravity_compensation_filter_parameters
73
+ src/control_filters/gravity_compensation_filter_parameters.yaml
74
+ )
75
+
67
76
add_library (gravity_compensation SHARED
68
77
src/control_filters/gravity_compensation.cpp
69
78
)
79
+ target_compile_features (gravity_compensation PUBLIC cxx_std_17)
70
80
target_include_directories (gravity_compensation PUBLIC
71
81
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR} /include >
72
- $<INSTALL_INTERFACE:include >
73
- )
74
- generate_parameter_library(
75
- gravity_compensation_filter_parameters
76
- src/control_filters/gravity_compensation_filter_parameters.yaml
82
+ $<INSTALL_INTERFACE:include /control_toolbox>
77
83
)
78
- target_link_libraries (gravity_compensation gravity_compensation_filter_parameters)
79
- ament_target_dependencies(gravity_compensation ${CONTROL_FILTERS_INCLUDE_DEPENDS} )
84
+
85
+ target_link_libraries (gravity_compensation PUBLIC gravity_compensation_filter_parameters)
86
+ ament_target_dependencies(gravity_compensation PUBLIC ${CONTROL_FILTERS_INCLUDE_DEPENDS} )
87
+
88
+ # Install pluginlib xml
89
+ pluginlib_export_plugin_description_file(filters control_filters.xml)
80
90
81
91
##########
82
92
# Testing
@@ -124,18 +134,9 @@ install(TARGETS gravity_compensation gravity_compensation_filter_parameters
124
134
RUNTIME DESTINATION bin
125
135
)
126
136
127
- # Install pluginlib xml
128
- pluginlib_export_plugin_description_file(filters control_filters.xml)
129
-
130
137
ament_export_targets(export_control_toolbox HAS_LIBRARY_TARGET)
131
138
ament_export_dependencies(${THIS_PACKAGE_INCLUDE_DEPENDS} ${CONTROL_FILTERS_INCLUDE_DEPENDS} )
132
139
ament_export_include_directories(
133
140
include
134
141
)
135
- ament_export_libraries(
136
- control_toolbox
137
- gravity_compensation
138
- gravity_compensation_filter_parameters
139
- )
140
-
141
142
ament_package()
0 commit comments