summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2024-04-18 09:05:00 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-04-18 08:24:01 +0000
commit1852ca53451684bb4cb2181b9ff46b58552f88f7 (patch)
tree504e8f034e7b33671a3f029bdd4bfba27440fbdb
parent9f7501873bce26af67148b4b6241f059ac280c20 (diff)
Make build error less ambiguous
The phrasing of the error message caused some confusion when people thought it indicated that QtGui itself was missing from the build. This tries to make it very explicit that it is the wayland-feature which is missing and not QtGui itself. Task-number: QTBUG-123489 Change-Id: I8dcdf8bdbb05a379dea3021cec8bf8e7036d55dc Reviewed-by: David Redondo <qt@david-redondo.de> Reviewed-by: Samuli Piippo <samuli.piippo@qt.io> (cherry picked from commit 87181b89b8a759a88026ea7e8cfe0a15d7f9187f) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/configure.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.cmake b/src/configure.cmake
index eda1f0850..db4669773 100644
--- a/src/configure.cmake
+++ b/src/configure.cmake
@@ -260,6 +260,6 @@ qt_configure_end_summary_section() # end of "Qt Wayland Drivers" section
qt_configure_add_report_entry(
TYPE ERROR
- MESSAGE "Qt Wayland Client requires QtGui to be build with support for wayland"
+ MESSAGE "Qt Gui has been built without 'wayland' feature. This feature is required for building Qt Wayland Client."
CONDITION NOT QT_FEATURE_wayland AND QT_FEATURE_wayland_client
)