From 4eb0f59fc03d6683fb1962a0c4960a1372c6cd4b Mon Sep 17 00:00:00 2001 From: Orange Date: Mon, 25 Aug 2025 21:59:25 +0300 Subject: [PATCH] Updates build status message Updates the build status message in CMake to include the project name, providing more context during the build process. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d7422e..c1f7bc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ else () add_library(${PROJECT_NAME} STATIC ${OMATH_SOURCES} ${OMATH_HEADERS}) endif () -message(STATUS "[OMATH]: Building on ${CMAKE_HOST_SYSTEM_NAME}") +message(STATUS "[${PROJECT_NAME}]: Building on ${CMAKE_HOST_SYSTEM_NAME}") add_library(${PROJECT_NAME}::${PROJECT_NAME} ALIAS ${PROJECT_NAME})