From bfb3717c85180e5503b5f4a7c0bb2f5c6ec1e5d7 Mon Sep 17 00:00:00 2001 From: gojimmypi Date: Mon, 2 Dec 2024 10:10:27 -0800 Subject: [PATCH] cmake message status --- .../ESP8266/components/wolfssl/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/IDE/Espressif/ESP-IDF/examples/ESP8266/components/wolfssl/CMakeLists.txt b/IDE/Espressif/ESP-IDF/examples/ESP8266/components/wolfssl/CMakeLists.txt index 8dc7a085f3..46bcc01480 100644 --- a/IDE/Espressif/ESP-IDF/examples/ESP8266/components/wolfssl/CMakeLists.txt +++ b/IDE/Espressif/ESP-IDF/examples/ESP8266/components/wolfssl/CMakeLists.txt @@ -45,28 +45,28 @@ if(VERBOSE_COMPONENT_MESSAGES) if(WIN32) # Windows-specific configuration here set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DWOLFSSL_CMAKE_SYSTEM_NAME_WINDOWS") - message("Detected Windows") + message(STATUS "Detected Windows") endif() if(CMAKE_HOST_UNIX) - message("Detected UNIX") + message(STATUS "Detected UNIX") endif() if(APPLE) - message("Detected APPLE") + message(STATUS "Detected APPLE") endif() if(CMAKE_HOST_UNIX AND (NOT APPLE) AND EXISTS "/proc/sys/fs/binfmt_misc/WSLInterop") # Windows-specific configuration here set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DWOLFSSL_CMAKE_SYSTEM_NAME_WSL") - message("Detected WSL") + message(STATUS "Detected WSL") endif() if(CMAKE_HOST_UNIX AND (NOT APPLE) AND (NOT WIN32)) # Windows-specific configuration here set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DWOLFSSL_CMAKE_SYSTEM_NAME_LINUX") - message("Detected Linux") + message(STATUS "Detected Linux") endif() if(APPLE) # Windows-specific configuration here set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DWOLFSSL_CMAKE_SYSTEM_NAME_APPLE") - message("Detected Apple") + message(STATUS "Detected Apple") endif() endif() # End optional WOLFSSL_CMAKE_SYSTEM_NAME