From 5acd82799d4824f1dec77608f003b014b7305907 Mon Sep 17 00:00:00 2001 From: snider Date: Mon, 6 Oct 2025 17:17:56 +0100 Subject: [PATCH] Add status message for OS and architecture detection in GetConan.cmake --- cmake/GetConan.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/GetConan.cmake b/cmake/GetConan.cmake index af32c546..b219baec 100644 --- a/cmake/GetConan.cmake +++ b/cmake/GetConan.cmake @@ -31,6 +31,7 @@ if(NOT EXISTS "${CONAN_EXECUTABLE}") file(MAKE_DIRECTORY "${CONAN_INSTALL_DIR}") # Detect the operating system and architecture + message(STATUS "Detecting OS and architecture: ${CMAKE_HOST_SYSTEM_PROCESSOR} on ${CMAKE_HOST_SYSTEM_NAME}") if(CMAKE_HOST_SYSTEM_NAME STREQUAL "Darwin") if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "arm64") set(CONAN_URL ${CONAN_URL_MACOS_ARM})