summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-04-17 08:56:26 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-04-17 23:10:11 +0200
commit3eed6d76b7ce280674caab448682a2e4837cb4d7 (patch)
tree8af78503b7c754a899c2ea9124f3f978a4be0669
parent8a5ffc4f73ef250610836393d0b71b2861a04929 (diff)
CMake: Port the 'ccache' feature
This maps to the CMake variable QT_USE_CCACHE. Change-Id: I3258027301284d907f6ecde6c65d2c0dde8f0a11 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--configure.cmake6
-rwxr-xr-xutil/cmake/configurejson2cmake.py5
2 files changed, 10 insertions, 1 deletions
diff --git a/configure.cmake b/configure.cmake
index f67dd96b6e..88c32e2637 100644
--- a/configure.cmake
+++ b/configure.cmake
@@ -781,6 +781,12 @@ qt_feature("compile_examples"
AUTODETECT NOT WASM
)
qt_feature_config("compile_examples" QMAKE_PRIVATE_CONFIG)
+qt_feature("ccache"
+ LABEL "Using ccache"
+ AUTODETECT 1
+ CONDITION QT_USE_CCACHE
+)
+qt_feature_config("ccache" QMAKE_PRIVATE_CONFIG)
qt_feature("dlopen" PRIVATE
LABEL "dlopen()"
CONDITION UNIX
diff --git a/util/cmake/configurejson2cmake.py b/util/cmake/configurejson2cmake.py
index 90bd3e2af6..e2ab8864f0 100755
--- a/util/cmake/configurejson2cmake.py
+++ b/util/cmake/configurejson2cmake.py
@@ -819,7 +819,10 @@ def get_feature_mapping():
"alloc_malloc_h": None,
"alloc_stdlib_h": None,
"build_all": None,
- "ccache": None,
+ "ccache": {
+ "autoDetect": "1",
+ "condition": "QT_USE_CCACHE"
+ },
"compiler-flags": None,
"cross_compile": {"condition": "CMAKE_CROSSCOMPILING"},
"debug_and_release": {