sway/common/meson.build
Manuel Stoeckl e633fe0b40 common: move load_image to swaybar
swaynag, swaymsg, and sway do not use this function and are
unlikely to in the future.
2023-11-23 20:42:04 +01:00

22 lines
325 B
Meson

lib_sway_common = static_library(
'sway-common',
files(
'cairo.c',
'gesture.c',
'ipc-client.c',
'log.c',
'loop.c',
'list.c',
'pango.c',
'stringop.c',
'util.c'
),
dependencies: [
cairo,
pango,
pangocairo,
wayland_client.partial_dependency(compile_args: true)
],
include_directories: sway_inc
)