From d48a82ee525e08d6e8088f1312adc2116c624621 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 20 Feb 2014 14:35:28 +0100 Subject: [PATCH] memaccess.cmake: Use STATUS instead of WARNING for output. Using STATUS looks nicer here (and it's an informational message only). Old: CMake Warning at CMake/memaccess.cmake:39 (MESSAGE): Cross compiling - using portable code for memory access Call Stack (most recent call first): CMakeLists.txt:93 (memaccess_check_unaligned_le) New: -- Cross compiling - using portable code for memory access --- CMake/memaccess.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/memaccess.cmake b/CMake/memaccess.cmake index a4a05f94..05aaf1ad 100644 --- a/CMake/memaccess.cmake +++ b/CMake/memaccess.cmake @@ -36,6 +36,6 @@ int main() { }" ${_var}) endif() if(CMAKE_CROSSCOMPILING) - message(WARNING "Cross compiling - using portable code for memory access") + message(STATUS "Cross compiling - using portable code for memory access") endif() endfunction() -- 2.30.2