mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
This starts up the event loop and wayland display and shims out the basic top level rendering concepts. Also includes some changes to incorporate pango into the 1.x codebase properly.
25 lines
335 B
Meson
25 lines
335 B
Meson
executable(
|
|
'swaybar',
|
|
[
|
|
'bar.c',
|
|
'config.c',
|
|
'event_loop.c',
|
|
'main.c',
|
|
'render.c',
|
|
],
|
|
include_directories: [sway_inc],
|
|
dependencies: [
|
|
cairo,
|
|
client_protos,
|
|
gdk_pixbuf,
|
|
jsonc,
|
|
math,
|
|
pango,
|
|
pangocairo,
|
|
rt,
|
|
wayland_client,
|
|
wlroots,
|
|
],
|
|
link_with: [lib_sway_common, lib_sway_client],
|
|
install: true
|
|
)
|