mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 12:33:50 +01:00
meson: common static library
This commit is contained in:
parent
739bafbd8e
commit
cc310cffb0
@ -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
|
||||
)
|
||||
|
@ -1,4 +1,4 @@
|
||||
sway_sources = sway_common + files(
|
||||
sway_sources = files(
|
||||
'main.c',
|
||||
'server.c',
|
||||
'commands.c',
|
||||
@ -25,5 +25,6 @@ executable(
|
||||
'sway',
|
||||
sway_sources,
|
||||
include_directories: [sway_inc],
|
||||
dependencies: sway_deps
|
||||
dependencies: sway_deps,
|
||||
link_with: [lib_sway_common]
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user