Skip to content

Commit 86b4240

Browse files
committed
Compile generated service definitions for actions
Previously, though we were generated service definitions for actions we were not compiling them. Signed-off-by: Jacob Perron <jacob@openrobotics.org>
1 parent e1a70cf commit 86b4240

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

rosidl_generator_java/cmake/rosidl_generator_java_generate_interfaces.cmake

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,23 @@ foreach(_abs_idl_file ${rosidl_generate_interfaces_ABS_IDL_FILES})
8181
"${_output_path}/${_parent_folder}/${_idl_name}_Goal.java"
8282
"${_output_path}/${_parent_folder}/${_idl_name}_Result.java"
8383
"${_output_path}/${_parent_folder}/${_idl_name}_Feedback.java"
84+
"${_output_path}/${_parent_folder}/${_idl_name}_SendGoal.java"
85+
"${_output_path}/${_parent_folder}/${_idl_name}_SendGoal_Request.java"
86+
"${_output_path}/${_parent_folder}/${_idl_name}_SendGoal_Response.java"
87+
"${_output_path}/${_parent_folder}/${_idl_name}_GetResult.java"
88+
"${_output_path}/${_parent_folder}/${_idl_name}_GetResult_Request.java"
89+
"${_output_path}/${_parent_folder}/${_idl_name}_GetResult_Response.java"
8490
)
8591
foreach(_typesupport_impl ${_typesupport_impls})
8692
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_Goal.ep.${_typesupport_impl}.cpp")
8793
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_Result.ep.${_typesupport_impl}.cpp")
8894
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_Feedback.ep.${_typesupport_impl}.cpp")
95+
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_SendGoal.ep.${_typesupport_impl}.cpp")
96+
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_SendGoal_Request.ep.${_typesupport_impl}.cpp")
97+
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_SendGoal_Response.ep.${_typesupport_impl}.cpp")
98+
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_GetResult.ep.${_typesupport_impl}.cpp")
99+
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_GetResult_Request.ep.${_typesupport_impl}.cpp")
100+
list(APPEND _generated_extension_${_typesupport_impl}_files "${_output_path}/${_parent_folder}/${_idl_name}_GetResult_Response.ep.${_typesupport_impl}.cpp")
89101
endforeach()
90102
endif()
91103

0 commit comments

Comments
 (0)