1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-03 12:29:49 +01:00
wlroots-hyprland/xwayland/meson.build
2018-04-03 12:56:54 -04:00

25 lines
393 B
Meson

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,
xcb,
xcb_composite,
xcb_xfixes,
xcb_image,
xcb_render,
xcb_icccm,
xcb_errors,
xkbcommon,
pixman,
],
)