From 4306fc019ad88b124cd1af0998a3bcc60856fc74 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Fri, 21 Aug 2020 15:16:31 +0200 Subject: CMake: Fix detection of the 'debug' feature The debug feature for the CMake build is solely determined by the value of CMAKE_BUILD_TYPE or CMAKE_CONFIGURATION_TYPES. There is no point in restricting the autoDetect expression to developer builds or MSVC and macOS builds. User-visible result: -DCMAKE_BUILD_TYPE=Debug now actually turns the 'debug' feature on, also for non-developer builds on Linux. Change-Id: I65c92575c9483bff16beb78b60606c55aeadcece Reviewed-by: Alexandru Croitor --- util/cmake/configurejson2cmake.py | 1 + 1 file changed, 1 insertion(+) (limited to 'util') diff --git a/util/cmake/configurejson2cmake.py b/util/cmake/configurejson2cmake.py index 8b74cf53cb..7fa19166d5 100755 --- a/util/cmake/configurejson2cmake.py +++ b/util/cmake/configurejson2cmake.py @@ -893,6 +893,7 @@ def get_feature_mapping(): "condition": "QT_GENERATOR_IS_MULTI_CONFIG", }, "debug": { + "autoDetect": "ON", "condition": "CMAKE_BUILD_TYPE STREQUAL Debug OR Debug IN_LIST CMAKE_CONFIGURATION_TYPES" }, "dlopen": {"condition": "UNIX"}, -- cgit v1.2.3