From cf9f78636a71113a623754a0feedc9ac6010a61d Mon Sep 17 00:00:00 2001 From: DraVee Date: Wed, 29 Oct 2025 13:09:40 +0100 Subject: [PATCH] [cmake] if CCACHE is set but not found, make it fatal (#2885) Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2885 Reviewed-by: Lizzie Reviewed-by: MaranBr Co-authored-by: DraVee Co-committed-by: DraVee --- 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()