diff --git a/cmake/BuildCTranslate2.cmake b/cmake/BuildCTranslate2.cmake index 4c21c7f..b833f32 100644 --- a/cmake/BuildCTranslate2.cmake +++ b/cmake/BuildCTranslate2.cmake @@ -53,6 +53,7 @@ else() # Enable ccache if available find_program(CCACHE_PROGRAM ccache) if(CCACHE_PROGRAM) + message(STATUS "Found ccache: ${CCACHE_PROGRAM}") set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE_PROGRAM}) set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE_PROGRAM}) endif() diff --git a/cmake/BuildSentencepiece.cmake b/cmake/BuildSentencepiece.cmake index 4df4f6d..1fa3d41 100644 --- a/cmake/BuildSentencepiece.cmake +++ b/cmake/BuildSentencepiece.cmake @@ -30,6 +30,7 @@ else() # Enable ccache if available find_program(CCACHE_PROGRAM ccache) if(CCACHE_PROGRAM) + message(STATUS "Found ccache: ${CCACHE_PROGRAM}") set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE_PROGRAM}) set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE_PROGRAM}) endif() diff --git a/cmake/BuildWhispercpp.cmake b/cmake/BuildWhispercpp.cmake index 5f1e628..67d22b4 100644 --- a/cmake/BuildWhispercpp.cmake +++ b/cmake/BuildWhispercpp.cmake @@ -105,6 +105,7 @@ else() # Enable ccache if available find_program(CCACHE_PROGRAM ccache) if(CCACHE_PROGRAM) + message(STATUS "Found ccache: ${CCACHE_PROGRAM}") set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE_PROGRAM}) set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE_PROGRAM}) endif()