Skip to content

Commit c8ffbfd

Browse files
authored
Quiet a warning when CONNEXTDDS_DIR or NDDSHOME is not found. (#158)
Failing to find those is an acceptable situation; in that case, we will end up just not building rmw_connextdds. Quiet the warning to only a STATUS message so it doesn't cause builds to go yellow. Signed-off-by: Chris Lalancette <[email protected]>
1 parent 27042e0 commit c8ffbfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rti_connext_dds_cmake_module/cmake/rti_build_helper.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ function(rti_load_connextddsdir)
377377
file(TO_CMAKE_PATH "$ENV{NDDSHOME}" connextdds_dir)
378378
endif()
379379
if("${connextdds_dir}" STREQUAL "")
380-
message(WARNING "no CONNEXTDDS_DIR nor NDDSHOME specified")
380+
message(STATUS "no CONNEXTDDS_DIR nor NDDSHOME specified")
381381
endif()
382382
set(CONNEXTDDS_DIR "${connextdds_dir}")
383383
endif()

0 commit comments

Comments
 (0)