CMake: emit message when ccache is detected.

This commit is contained in:
Jacob Oursland
2025-03-17 18:17:46 -03:00
committed by Adrián Insaurralde Avalos
parent 0eda35d19f
commit 1c684b2c25
+1
View File
@@ -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()