swayfx/common/meson.build

24 lines
293 B
Meson
Raw Normal View History

2018-03-28 06:25:25 +11:00
deps = [
cairo,
wlroots
]
if gdk_pixbuf.found()
deps += [gdk_pixbuf]
endif
lib_sway_common = static_library(
'sway-common',
2017-11-30 22:25:13 +11:00
files(
2018-03-28 06:25:25 +11:00
'cairo.c',
'ipc-client.c',
2017-11-30 22:25:13 +11:00
'log.c',
'list.c',
'readline.c',
2018-03-28 06:25:25 +11:00
'stringop.c',
'util.c'
2017-11-30 22:25:13 +11:00
),
2018-03-28 06:25:25 +11:00
dependencies: deps,
2017-11-30 22:25:13 +11:00
include_directories: sway_inc
2017-11-30 19:39:27 +11:00
)