summaryrefslogtreecommitdiffstats
path: root/configure.cmake
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2020-08-21 15:16:31 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2020-08-23 11:04:55 +0200
commit4306fc019ad88b124cd1af0998a3bcc60856fc74 (patch)
tree5e4c50df4c9213a1cc36d2873e4664a2b584e1d1 /configure.cmake
parent97551b90b974f943ff3fac40314c79ef922596d3 (diff)
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 <alexandru.croitor@qt.io>
Diffstat (limited to 'configure.cmake')
-rw-r--r--configure.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.cmake b/configure.cmake
index e4b632f0db..a45c8431d2 100644
--- a/configure.cmake
+++ b/configure.cmake
@@ -452,7 +452,7 @@ qt_feature_config("developer-build" QMAKE_PUBLIC_QT_CONFIG
)
qt_feature("debug"
LABEL "Build for debugging"
- AUTODETECT QT_FEATURE_developer_build OR ( WIN32 AND NOT GCC ) OR APPLE
+ AUTODETECT ON
CONDITION CMAKE_BUILD_TYPE STREQUAL Debug OR Debug IN_LIST CMAKE_CONFIGURATION_TYPES
)
qt_feature("debug_and_release" PUBLIC