meson wrap

This commit is contained in:
Tony Crisci 2017-12-05 09:02:42 -05:00
parent 83b4c0648d
commit 9e53764f13
6 changed files with 12 additions and 10 deletions

View file

@ -1,3 +1,7 @@
sway_common_deps = [
wlroots
]
lib_sway_common = static_library('sway-common',
files(
'log.c',
@ -7,5 +11,6 @@ lib_sway_common = static_library('sway-common',
'readline.c',
'ipc-client.c'
),
include_directories: sway_inc
include_directories: sway_inc,
dependencies: [sway_common_deps]
)