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