1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-26 03:52:01 +02:00

Set ENABLE_CCACHE to OFF by default

This commit is contained in:
Alexander Wilms 2023-10-09 21:22:11 +02:00
parent 43636af2e4
commit 3f83d54dc1

View File

@ -82,7 +82,7 @@ endif()
# On Linux, use -DCMAKE_CXX_COMPILER_LAUNCHER=ccache instead.
# The XCode and MSVC builds each require some more configuration, which is enabled by the following option:
if(MSVC OR (CMAKE_GENERATOR STREQUAL "Xcode"))
option(ENABLE_CCACHE "Speed up recompilation by caching previous compilations" ON)
option(ENABLE_CCACHE "Speed up recompilation by caching previous compilations" OFF)
endif()
if(ENABLE_CCACHE AND (CMAKE_GENERATOR STREQUAL "Xcode"))