mirror of
https://github.com/swaywm/sway.git
synced 2026-04-17 06:46:32 -04:00
optional compile time dependency. This means the former code paths are all retained and new ones are wrapped in #if HAVE_LIBSFDO. Behavior should be identical now between the two code paths. Later commits will add the handling of icons specified as absolute paths which both former swaybar code and libsfdo have thus far avoided.
22 lines
337 B
Meson
22 lines
337 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',
|
|
'sfdo.c',
|
|
'stringop.c',
|
|
'util.c'
|
|
),
|
|
dependencies: [
|
|
cairo,
|
|
pango,
|
|
pangocairo,
|
|
wayland_client.partial_dependency(compile_args: true)
|
|
],
|
|
include_directories: sway_inc
|
|
)
|