mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2025-01-01 06:20:17 +01:00
22 lines
310 B
Meson
22 lines
310 B
Meson
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
|
|
)
|