From: Uwe Hermann Date: Thu, 20 Feb 2014 13:35:28 +0000 (+0100) Subject: memaccess.cmake: Use STATUS instead of WARNING for output. X-Git-Tag: pulseview-0.2.0~63 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=d48a82ee525e08d6e8088f1312adc2116c624621 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 --- 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()