2014-08-14 15:05:25 -07:00
|
|
|
#
|
|
|
|
# Get the package names of the available ROS middleware implemenations.
|
|
|
|
#
|
|
|
|
# :param var: the output variable name containing the package names
|
|
|
|
# :type var: list of strings
|
|
|
|
#
|
2015-03-04 16:31:22 -08:00
|
|
|
function(get_available_rmw_implementations var)
|
|
|
|
ament_index_get_resources(middleware_implementations "rmw_implementation")
|
2014-08-14 15:05:25 -07:00
|
|
|
set(${var} ${middleware_implementations} PARENT_SCOPE)
|
|
|
|
endfunction()
|