sway/common/meson.build
emersion 8389047b47
Introduce shell_expand
This performs shell expansion without field splitting. This fixes issues with
filenames containing spaces.

This commit also cleans up complicated logic to join fields and to set
XDG_CONFIG_HOME.
2018-12-11 10:00:55 +01:00

25 lines
347 B
Meson

lib_sway_common = static_library(
'sway-common',
files(
'background-image.c',
'cairo.c',
'ipc-client.c',
'list.c',
'log.c',
'loop.c',
'pango.c',
'readline.c',
'shexp.c',
'stringop.c',
'unicode.c',
'util.c',
),
dependencies: [
cairo,
gdk_pixbuf,
pango,
pangocairo,
wlroots
],
include_directories: sway_inc
)