mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
24 lines
336 B
Meson
24 lines
336 B
Meson
executable(
|
|
'swaynag', [
|
|
'config.c',
|
|
'main.c',
|
|
'render.c',
|
|
'swaynag.c',
|
|
'types.c',
|
|
],
|
|
include_directories: [sway_inc],
|
|
dependencies: [
|
|
cairo,
|
|
client_protos,
|
|
gdk_pixbuf,
|
|
math,
|
|
pango,
|
|
pangocairo,
|
|
wayland_client,
|
|
wayland_cursor,
|
|
wlroots,
|
|
],
|
|
link_with: [lib_sway_common, lib_sway_client],
|
|
install: true
|
|
)
|