aboutsummaryrefslogtreecommitdiffstats
path: root/client/meson.build
blob: 2bdda457c25b0454482dfa1f5ced1b18c2d52c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
lib_sway_client = static_library(
	'sway-client',
	files(
		'pool-buffer.c',
	),
	dependencies: [
		cairo,
		gdk_pixbuf,
		pango,
		pangocairo,
		wlroots,
		wayland_client,
	],
	link_with: [lib_sway_common],
	include_directories: sway_inc
)