[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 <lizzie@eden-emu.dev>
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Co-authored-by: DraVee <caiooliveirafarias0@gmail.com>
Co-committed-by: DraVee <caiooliveirafarias0@gmail.com>
This commit is contained in:
DraVee 2025-10-29 13:09:40 +01:00 committed by crueter
parent ae46778cc3
commit cf9f78636a
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ if(USE_CCACHE)
set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE_BINARY}) set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE_BINARY})
set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE_BINARY}) set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE_BINARY})
else() 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()
endif() endif()