1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

Mark ccache as required if ENABLE_CCACHE is ON, set ENABLE_CCACHE to ON by dafault instead of setting it in CMakePresets.json

This commit is contained in:
Alexander Wilms 2023-10-06 12:44:56 +02:00
parent 510fb205e7
commit c5378f560e
2 changed files with 5 additions and 7 deletions

View File

@ -82,7 +82,7 @@ endif()
# On Linux, use -DCMAKE_CXX_COMPILER_LAUNCHER=ccache instead.
# The iOS and MSVC builds each require some configuration, which is enabled by the following option:
if(APPLE_IOS OR MSVC)
option(ENABLE_CCACHE "Speed up recompilation by caching previous compilations" OFF)
option(ENABLE_CCACHE "Speed up recompilation by caching previous compilations" ON)
endif()
# Allow to pass package name from Travis CI
@ -230,7 +230,7 @@ if(APPLE_IOS)
set(CMAKE_XCODE_ATTRIBUTE_TARGETED_DEVICE_FAMILY "1,2")
if(ENABLE_CCACHE)
find_program(CCACHE "ccache")
find_program(CCACHE ccache REQUIRED)
if(CCACHE)
# https://stackoverflow.com/a/36515503/2278742
# Set up wrapper scripts
@ -263,7 +263,7 @@ if(MINGW OR MSVC)
if(MSVC)
if(ENABLE_CCACHE)
# https://github.com/ccache/ccache/discussions/1154#discussioncomment-3611387
find_program(CCACHE ccache)
find_program(CCACHE ccache REQUIRED)
if (CCACHE)
file(COPY_FILE
${CCACHE} ${CMAKE_BINARY_DIR}/cl.exe

View File

@ -122,8 +122,7 @@
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"CMAKE_POLICY_DEFAULT_CMP0091": "NEW",
"FORCE_BUNDLED_MINIZIP": "ON",
"ENABLE_CCACHE": "ON"
"FORCE_BUNDLED_MINIZIP": "ON"
}
},
{
@ -229,8 +228,7 @@
"description": "VCMI iOS release using Conan and ccache",
"inherits": "ios-release-conan",
"cacheVariables": {
"ENABLE_PCH" : "OFF",
"ENABLE_CCACHE": "ON"
"ENABLE_PCH" : "OFF"
}
},
{