From da14d88cd68c90a24ae29d79204da368e69ad648 Mon Sep 17 00:00:00 2001 From: Mikael Arguedas Date: Mon, 7 Nov 2016 18:47:05 -0800 Subject: [PATCH] line length (#269) --- rclcpp/cmake/rclcpp_register_node_plugins.cmake | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rclcpp/cmake/rclcpp_register_node_plugins.cmake b/rclcpp/cmake/rclcpp_register_node_plugins.cmake index 254d2b8..f8675f8 100644 --- a/rclcpp/cmake/rclcpp_register_node_plugins.cmake +++ b/rclcpp/cmake/rclcpp_register_node_plugins.cmake @@ -26,13 +26,15 @@ macro(rclcpp_register_node_plugins target) if(NOT TARGET ${target}) message( FATAL_ERROR - "rclcpp_register_node_plugins() first argument '${target}' is not a target") + "rclcpp_register_node_plugins() first argument " + "'${target}' is not a target") endif() get_target_property(_target_type ${target} TYPE) if(NOT _target_type STREQUAL "SHARED_LIBRARY") message( FATAL_ERROR - "rclcpp_register_node_plugins() first argument '${target}' is not a shared library target") + "rclcpp_register_node_plugins() first argument " + "'${target}' is not a shared library target") endif() if(${ARGC} GREATER 0) @@ -42,7 +44,8 @@ macro(rclcpp_register_node_plugins target) if(_arg IN_LIST _unique_names) message( FATAL_ERROR - "rclcpp_register_node_plugins() the plugin names must be unique (multiple '${_arg}')") + "rclcpp_register_node_plugins() the plugin names " + "must be unique (multiple '${_arg}')") endif() list(APPEND _unique_names "${_arg}")