mirror of
https://github.com/swaywm/sway.git
synced 2024-11-05 16:03:11 +00:00
24 lines
293 B
Meson
24 lines
293 B
Meson
deps = [
|
|
cairo,
|
|
wlroots
|
|
]
|
|
|
|
if gdk_pixbuf.found()
|
|
deps += [gdk_pixbuf]
|
|
endif
|
|
|
|
lib_sway_common = static_library(
|
|
'sway-common',
|
|
files(
|
|
'cairo.c',
|
|
'ipc-client.c',
|
|
'log.c',
|
|
'list.c',
|
|
'readline.c',
|
|
'stringop.c',
|
|
'util.c'
|
|
),
|
|
dependencies: deps,
|
|
include_directories: sway_inc
|
|
)
|