mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
4056c09e13
* The loop functions are now prefixed with `loop_`. * It is now easy to add timers to the loop. * Timers are implemented using pollfd and timerfd, rather than manually checking them when any other event happens to arrive.
25 lines
333 B
Meson
25 lines
333 B
Meson
lib_sway_common = static_library(
|
|
'sway-common',
|
|
files(
|
|
'background-image.c',
|
|
'cairo.c',
|
|
'ipc-client.c',
|
|
'log.c',
|
|
'loop.c',
|
|
'list.c',
|
|
'pango.c',
|
|
'readline.c',
|
|
'stringop.c',
|
|
'unicode.c',
|
|
'util.c'
|
|
),
|
|
dependencies: [
|
|
cairo,
|
|
gdk_pixbuf,
|
|
pango,
|
|
pangocairo,
|
|
wlroots
|
|
],
|
|
include_directories: sway_inc
|
|
)
|