aboutsummaryrefslogtreecommitdiffstats
path: root/client/meson.build
blob: 597899ce2374893f8a3c9c5d4fe6004a9ef0e4b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
deps = [
	cairo,
	pango,
	pangocairo,
	wlroots,
	wayland_client,
]

if gdk_pixbuf.found()
	deps += [gdk_pixbuf]
endif

lib_sway_client = static_library(
	'sway-client',
	files(
		'buffer-pool.c',
	),
	dependencies: deps,
	link_with: [lib_sway_common],
	include_directories: sway_inc
)