mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
19 lines
266 B
Meson
19 lines
266 B
Meson
lib_wlr_xwayland = static_library(
|
|
'wlr_xwayland',
|
|
files(
|
|
'sockets.c',
|
|
'xwayland.c',
|
|
'xwm.c',
|
|
),
|
|
include_directories: wlr_inc,
|
|
dependencies: [
|
|
wayland_server,
|
|
xcb,
|
|
xcb_composite,
|
|
xcb_xfixes,
|
|
xcb_image,
|
|
xcb_render,
|
|
xcb_icccm,
|
|
pixman,
|
|
],
|
|
)
|