sway/swaybg/meson.build
Nicolas Braud-Santoni 830c4ef74c Meson: Replace option instlibdir with libexecdir
Derive a value from it, called `rundir` rather than writing join_paths(libexecdir,
'sway') all over the place.
2018-05-05 17:22:46 +02:00

20 lines
294 B
Meson

executable(
'swaybg',
'main.c',
include_directories: [sway_inc],
dependencies: [
cairo,
client_protos,
gdk_pixbuf,
jsonc,
math,
pango,
pangocairo,
wayland_client,
wlroots,
],
link_with: [lib_sway_common, lib_sway_client],
install: true,
install_dir: sway_libexecdir
)