diff options
Diffstat (limited to 'cmake/Deps.cmake')
-rw-r--r-- | cmake/Deps.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/Deps.cmake b/cmake/Deps.cmake index 519826654f..5902ca6970 100644 --- a/cmake/Deps.cmake +++ b/cmake/Deps.cmake @@ -19,6 +19,7 @@ if(APPLE) endif() find_program(CACHE_PRG NAMES ccache sccache) +mark_as_advanced(CACHE_PRG) if(CACHE_PRG) set(CMAKE_C_COMPILER_LAUNCHER ${CMAKE_COMMAND} -E env CCACHE_SLOPPINESS=pch_defines,time_macros ${CACHE_PRG}) list(APPEND DEPS_CMAKE_CACHE_ARGS -DCMAKE_C_COMPILER_LAUNCHER:STRING=${CMAKE_C_COMPILER_LAUNCHER}) @@ -27,6 +28,7 @@ endif() # MAKE_PRG if(UNIX) find_program(MAKE_PRG NAMES gmake make) + mark_as_advanced(MAKE_PRG) if(NOT MAKE_PRG) message(FATAL_ERROR "GNU Make is required to build the dependencies.") else() |