mirror of
https://github.com/swaywm/sway.git
synced 2024-11-05 16:03:11 +00:00
f9413adde7
It is required for include path if wlroots is not built in standard path, but found through pkg-config
13 lines
205 B
Meson
13 lines
205 B
Meson
lib_sway_common = static_library('sway-common',
|
|
files(
|
|
'log.c',
|
|
'list.c',
|
|
'util.c',
|
|
'stringop.c',
|
|
'readline.c',
|
|
'ipc-client.c'
|
|
),
|
|
dependencies: [ wlroots ],
|
|
include_directories: sway_inc
|
|
)
|