From 21595e38909ff1efd26001d8e9f3396a7ed060b1 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Tue, 13 Aug 2019 22:09:42 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D1=80=D0=BE=D0=B2=D0=B5=D0=BD=D1=8C=20?= =?UTF-8?q?=D1=81=D0=BE=D0=BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMLibCodeAnalysisPvsStudio.cmake | 3 ++- CMLibSanitizers.cmake | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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.")