mirror of
https://github.com/swaywm/sway.git
synced 2024-11-29 11:21:28 +00:00
17 lines
245 B
Meson
17 lines
245 B
Meson
sway_common_deps = [
|
|
wlroots
|
|
]
|
|
|
|
lib_sway_common = static_library('sway-common',
|
|
files(
|
|
'log.c',
|
|
'list.c',
|
|
'util.c',
|
|
'stringop.c',
|
|
'readline.c',
|
|
'ipc-client.c'
|
|
),
|
|
include_directories: sway_inc,
|
|
dependencies: [sway_common_deps]
|
|
)
|