1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-17 18:42:08 +01:00
wlroots-hyprland/xwayland/meson.build

22 lines
296 B
Meson
Raw Normal View History

lib_wlr_xwayland = static_library(
'wlr_xwayland',
files(
2017-11-20 07:23:17 -05:00
'selection.c',
'sockets.c',
'xwayland.c',
'xwm.c',
),
include_directories: wlr_inc,
2017-10-15 14:50:21 -04:00
dependencies: [
wayland_server,
xcb,
xcb_composite,
xcb_xfixes,
2017-11-02 00:03:55 +01:00
xcb_image,
2017-11-02 15:52:02 +01:00
xcb_render,
2017-10-15 14:50:21 -04:00
xcb_icccm,
2018-02-14 18:27:31 +00:00
xkbcommon,
2017-10-15 14:50:21 -04:00
pixman,
],
)