From 9ba58612bec409ad9d7d88527d557fd9a39694bd Mon Sep 17 00:00:00 2001 From: Beats Date: Sat, 12 Oct 2024 22:15:49 -0400 Subject: [PATCH] up --- cmake/modules/CanaryLib.cmake | 2 +- tests/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/modules/CanaryLib.cmake b/cmake/modules/CanaryLib.cmake index cf16cbf2541..3e168d0569b 100644 --- a/cmake/modules/CanaryLib.cmake +++ b/cmake/modules/CanaryLib.cmake @@ -47,7 +47,7 @@ configure_linking(${PROJECT_NAME}_lib) # === UNITY BUILD (compile time reducer) === if(SPEED_UP_BUILD_UNITY) set_target_properties(${PROJECT_NAME}_lib PROPERTIES UNITY_BUILD ON) - log_option_enabled("Build unity for speed up compilation") + log_option_enabled("Build unity for speed up compilation for taget ${PROJECT_NAME}_lib") else() log_option_disabled("Build unity") endif() diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3838528bd23..d35631ff2fa 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -11,7 +11,7 @@ function(setup_test TARGET_NAME DIR) if(SPEED_UP_BUILD_UNITY AND (CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo" OR CMAKE_BUILD_TYPE STREQUAL "Release")) set_target_properties(${TARGET_NAME} PROPERTIES UNITY_BUILD ON) - log_option_enabled("Build unity for speed up compilation") + log_option_enabled("Build unity for speed up compilation for target ${TARGET_NAME}") else() log_option_disabled("Build unity") endif()