You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
The line length enforcement in ament_lint_cmake has been broken for some
time, but will be fixed by ament/ament_lint#236. This change brings this
package into compliance with a 120 column limit.
Signed-off-by: Scott K Logan <logans@cottsay.net>
message(WARNING "NDDSHOME set to '${_NDDSHOME}' but found multiple files named '${_optimized_library_names}' under '${_lib_path}': ${_optimized_libraries}")
205
+
message(WARNING
206
+
"NDDSHOME set to '${_NDDSHOME}' but found multiple files named '${_optimized_library_names}' "
message(FATAL_ERROR "NDDSHOME set to '${_NDDSHOME}' but could neither find all optimized libraries '${_optimized_library_names}' nor all debug libraries '${_debug_library_names}' under '${_lib_path}':\n- optimized: ${_optimized_libraries}\n- debug: ${_debug_libraries}")
220
+
message(FATAL_ERROR
221
+
"NDDSHOME set to '${_NDDSHOME}' but could neither find all optimized libraries '${_optimized_library_names}' "
222
+
"nor all debug libraries '${_debug_library_names}' under '${_lib_path}':\n"
223
+
"- optimized: ${_optimized_libraries}\n"
224
+
"- debug: ${_debug_libraries}")
215
225
endif()
216
226
217
227
set(Connext_LIBRARIES "")
@@ -288,23 +298,29 @@ else()
288
298
set(Connext_FOUND TRUE)
289
299
290
300
# check if all expected libraries have been found exactly once
message(FATAL_ERROR "Connext_LIBRARIES does neither contain all optimized libraries '${_optimized_library_names}' nor all debug libraries '${_debug_library_names}': ${Connext_LIBRARIES}")
321
+
message(FATAL_ERROR
322
+
"Connext_LIBRARIES does neither contain all optimized libraries '${_optimized_library_names}' "
323
+
"nor all debug libraries '${_debug_library_names}': ${Connext_LIBRARIES}")
0 commit comments