From a595f7cdb2c3fdad34513d6e5fe19d3fded8868c Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Wed, 27 Nov 2024 15:05:41 -0800 Subject: [PATCH] CMake: emit message when ccache is detected. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 97c0f4b6a3..e94db800da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,7 @@ if(FREECAD_USE_CCACHE) find_program(CCACHE_PROGRAM ccache) #This check should occur before project() if(CCACHE_PROGRAM) set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}") + message(NOTICE "-- Using ccache found at: " ${CCACHE_PROGRAM}) endif() endif()