From d823ff9c118443831a8de93765156f307c76b622 Mon Sep 17 00:00:00 2001 From: DraVee Date: Wed, 29 Oct 2025 04:24:46 +0100 Subject: [PATCH] [cmake] for some crazy reason, this breaks build if CCACHE is set but not found * make it fatal then --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dda6979911..97a6386f02 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -231,7 +231,7 @@ if(USE_CCACHE) set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE_BINARY}) set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE_BINARY}) else() - message(WARNING "USE_CCACHE enabled, but no executable found at: ${CCACHE_PATH}") + message(FATAL_ERROR "USE_CCACHE enabled, but no executable found at: ${CCACHE_PATH}") endif() endif()