aboutsummaryrefslogtreecommitdiffstats
path: root/common/meson.build
blob: 4ad4707744a0cd6be8618c83ae6bb8b890661533 (plain) (blame)
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
26
deps = [
	cairo,
	pango,
	pangocairo,
	wlroots
]

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

lib_sway_common = static_library(
	'sway-common',
	files(
		'cairo.c',
		'ipc-client.c',
		'log.c',
		'list.c',
		'pango.c',
		'readline.c',
		'stringop.c',
		'util.c'
	),
	dependencies: deps,
	include_directories: sway_inc
)