blob: a90c649f138093fe9952dde7ff2b3ea2df5fa643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
# configure.cmake for the WaylandClientFeaturesPrivate module
# The following client-side features have not been moved
# to qtbase, as they are very Qt specific.
qt_feature("wayland-client-ivi-shell" PRIVATE
LABEL "ivi-shell"
CONDITION QT_FEATURE_wayland_client
)
qt_feature("wayland-client-qt-shell" PRIVATE
LABEL "qt-shell"
CONDITION QT_FEATURE_wayland_client
)
# And this feature depends on QtSvg, so we can't have it in qtbase
qt_feature("wayland-decoration-adwaita" PRIVATE
LABEL "GNOME-like client-side decorations"
CONDITION NOT WIN32 AND QT_FEATURE_wayland_client AND TARGET Qt::DBus AND TARGET Qt::Svg
)
qt_configure_add_summary_section(NAME "Wayland Client")
qt_configure_add_summary_section(NAME "Shell Integrations")
qt_configure_add_summary_entry(ARGS "wayland-client-ivi-shell")
qt_configure_add_summary_entry(ARGS "wayland-client-qt-shell")
qt_configure_end_summary_section() # end of "Shell Integrations" section
qt_configure_add_summary_section(NAME "Decoration Plugins")
qt_configure_add_summary_entry(ARGS "wayland-decoration-adwaita")
qt_configure_end_summary_section() # end of "Decoration Plugins" section
qt_configure_end_summary_section() # end of "Wayland Client" section
|