Refactor meson build files

Use tabs for indentation and break up function calls over 80 col.
This commit is contained in:
Tony Crisci 2017-08-30 14:30:47 -04:00
parent 6daf9e9ab2
commit 368f74e4df
9 changed files with 209 additions and 151 deletions

View file

@ -1,7 +1,10 @@
lib_wlr_xwayland = static_library('wlr_xwayland', files(
'sockets.c',
'xwayland.c',
'xwm.c',
),
include_directories: wlr_inc,
dependencies: [wayland_server, xcb, xcb_composite, pixman])
lib_wlr_xwayland = static_library(
'wlr_xwayland',
files(
'sockets.c',
'xwayland.c',
'xwm.c',
),
include_directories: wlr_inc,
dependencies: [wayland_server, xcb, xcb_composite, pixman],
)