diff --git a/CMLibCodeAnalysisPvsStudio.cmake b/CMLibCodeAnalysisPvsStudio.cmake index 17a35d2..c7bac77 100644 --- a/CMLibCodeAnalysisPvsStudio.cmake +++ b/CMLibCodeAnalysisPvsStudio.cmake @@ -22,7 +22,8 @@ function(add_pvs_check) message(STATUS " PVS-Studio analyzer is not found") endif() else() - message(WARNING "Option CMAKE_EXPORT_COMPILE_COMMANDS is not set. PVS checks will be disabled.") + message(STATUS "CMLIB warning:") + message(STATUS " Option CMAKE_EXPORT_COMPILE_COMMANDS is not set. PVS checks will be disabled.") endif() endfunction() diff --git a/CMLibSanitizers.cmake b/CMLibSanitizers.cmake index d5dc6c2..be3d883 100644 --- a/CMLibSanitizers.cmake +++ b/CMLibSanitizers.cmake @@ -4,7 +4,8 @@ if(IS_DIRECTORY "${CMLIB_MODULE_DIR}") list(APPEND CMAKE_MODULE_PATH ${CMLIB_SANITIZERS_DIR}) find_package(Sanitizers) else() - message(WARNING "Sanitizers submodule not found.") + message(STATUS "CMLIB warning:") + message(STATUS " Sanitizers submodule is not found.") endif() else() message(FATAL_ERROR "CMLib directory not found.")