aboutsummaryrefslogtreecommitdiff
path: root/xwayland/meson.build
blob: ec486f58582d1adf4d42405532786ab8dd4d1c6d (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
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,
	],
)