summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2024-04-18 09:05:00 +0200
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>2024-04-18 09:15:20 +0200
commit87181b89b8a759a88026ea7e8cfe0a15d7f9187f (patch)
tree53aefb8443b72e7a921d0145b526dd9bb7d4c044 /src
parent1add0df5be43b09f06aae7936d27c3133e1d091d (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. Pick-to: 6.7 Task-number: QTBUG-123489 Change-Id: I8dcdf8bdbb05a379dea3021cec8bf8e7036d55dc Reviewed-by: David Redondo <qt@david-redondo.de> Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/configure.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.cmake b/src/configure.cmake
index 45f945333..00b337786 100644
--- a/src/configure.cmake
+++ b/src/configure.cmake
@@ -268,6 +268,6 @@ qt_configure_end_summary_section() # end of "Qt Wayland Decoration Plugins" sect
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
)