aboutsummaryrefslogtreecommitdiff
path: root/xwayland/meson.build
blob: 9d7f3f4a3b358de2d208e32b196026e4f6671f51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib_wlr_xwayland = static_library(
	'wlr_xwayland',
	files(
		'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,
	],
)