mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
fd3fa760d3
This reverts commit 9c886f20b9
.
51 lines
915 B
Meson
51 lines
915 B
Meson
xwayland_libs = []
|
|
xwayland_required = [
|
|
'xcb',
|
|
'xcb-composite',
|
|
'xcb-render',
|
|
'xcb-xfixes',
|
|
]
|
|
xwayland_optional = [
|
|
'xcb-errors',
|
|
'xcb-icccm',
|
|
]
|
|
|
|
foreach lib : xwayland_required
|
|
dep = dependency(lib, required: get_option('xwayland'))
|
|
if not dep.found()
|
|
subdir_done()
|
|
endif
|
|
|
|
xwayland_libs += dep
|
|
endforeach
|
|
|
|
foreach lib : xwayland_optional
|
|
dep = dependency(lib, required: get_option(lib))
|
|
if dep.found()
|
|
xwayland_libs += dep
|
|
conf_data.set('WLR_HAS_' + lib.underscorify().to_upper(), true)
|
|
endif
|
|
endforeach
|
|
|
|
lib_wlr_xwayland = static_library(
|
|
'wlr_xwayland',
|
|
files(
|
|
'selection/dnd.c',
|
|
'selection/incoming.c',
|
|
'selection/outgoing.c',
|
|
'selection/selection.c',
|
|
'sockets.c',
|
|
'xwayland.c',
|
|
'xwm.c',
|
|
),
|
|
include_directories: wlr_inc,
|
|
dependencies: [
|
|
wayland_server,
|
|
xwayland_libs,
|
|
xkbcommon,
|
|
pixman,
|
|
],
|
|
)
|
|
|
|
wlr_parts += lib_wlr_xwayland
|
|
conf_data.set('WLR_HAS_XWAYLAND', true)
|