]> sigrok.org Git - pulseview.git/commitdiff
memaccess.cmake: Use STATUS instead of WARNING for output.
authorUwe Hermann <redacted>
Thu, 20 Feb 2014 13:35:28 +0000 (14:35 +0100)
committerUwe Hermann <redacted>
Thu, 20 Feb 2014 13:35:28 +0000 (14:35 +0100)
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

index a4a05f945a1c59c916bc65041e6b36229a71ed9d..05aaf1adb3db10c7c1d7838f8eb1593e0fdaa614 100644 (file)
@@ -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()