meson: common static library

This commit is contained in:
Tony Crisci 2017-11-30 06:25:13 -05:00
parent 739bafbd8e
commit cc310cffb0
2 changed files with 13 additions and 9 deletions

View file

@ -1,8 +1,11 @@
sway_common = files(
'log.c',
'list.c',
'util.c',
'stringop.c',
'readline.c',
'ipc-client.c'
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
)