2018-03-27 15:25:25 -04:00
|
|
|
lib_sway_common = static_library(
|
|
|
|
'sway-common',
|
2017-11-30 06:25:13 -05:00
|
|
|
files(
|
2018-04-02 21:57:13 -04:00
|
|
|
'background-image.c',
|
2018-03-27 15:25:25 -04:00
|
|
|
'cairo.c',
|
|
|
|
'ipc-client.c',
|
2017-11-30 06:25:13 -05:00
|
|
|
'log.c',
|
2018-10-13 16:04:37 +10:00
|
|
|
'loop.c',
|
2017-11-30 06:25:13 -05:00
|
|
|
'list.c',
|
2018-03-28 23:04:20 -04:00
|
|
|
'pango.c',
|
2017-11-30 06:25:13 -05:00
|
|
|
'readline.c',
|
2018-03-27 15:25:25 -04:00
|
|
|
'stringop.c',
|
2018-04-03 14:31:30 -04:00
|
|
|
'unicode.c',
|
2018-03-27 15:25:25 -04:00
|
|
|
'util.c'
|
2017-11-30 06:25:13 -05:00
|
|
|
),
|
2018-04-02 21:57:13 -04:00
|
|
|
dependencies: [
|
|
|
|
cairo,
|
|
|
|
gdk_pixbuf,
|
|
|
|
pango,
|
|
|
|
pangocairo,
|
|
|
|
wlroots
|
|
|
|
],
|
2017-11-30 06:25:13 -05:00
|
|
|
include_directories: sway_inc
|
2017-11-30 03:39:27 -05:00
|
|
|
)
|