mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
e633fe0b40
swaynag, swaymsg, and sway do not use this function and are unlikely to in the future.
22 lines
325 B
Meson
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
|
|
)
|