mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
830c4ef74c
Derive a value from it, called `rundir` rather than writing join_paths(libexecdir, 'sway') all over the place.
20 lines
294 B
Meson
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
|
|
)
|