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

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

executable(
    'swaybg',
    'main.c',
    include_directories: [sway_inc],
    dependencies: deps,
    link_with: [lib_sway_common, lib_sway_client],
    install: true
)