diff --git a/CMakeLists.txt b/CMakeLists.txt index c1013c43e7dc82..3f9e119420e309 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,14 +98,14 @@ if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") set(OS_MACOS True) find_library(IOKIT IOKit) find_library(FOUNDATION Foundation) - message(INFO " Compiling for MacOS... ") + message(STATUS " Compiling for MacOS... ") elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "FreeBSD") set(OS_FREEBSD True) - message(INFO " Compiling for FreeBSD... ") + message(STATUS " Compiling for FreeBSD... ") elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") set(OS_LINUX True) add_definitions(-D_GNU_SOURCE) - message(INFO " Compiling for Linux... ") + message(STATUS " Compiling for Linux... ") elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "CYGWIN" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "MSYS" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "Windows") set(OS_WINDOWS True) @@ -134,7 +134,7 @@ elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "CYGWIN" OR "${CMAKE_SYSTEM_NAME}" STREQU endif() endif() - message(INFO " Compiling for Windows (${CMAKE_SYSTEM_NAME}, MSYSTEM=$ENV{MSYSTEM})... ") + message(STATUS " Compiling for Windows (${CMAKE_SYSTEM_NAME}, MSYSTEM=$ENV{MSYSTEM})... ") else() message(FATAL_ERROR "Unknown/unsupported platform: ${CMAKE_SYSTEM_NAME} (Supported platforms: FreeBSD, Linux, macOS, Windows)") endif()