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,22 +1,25 @@
lib_wlr_types = static_library('wlr_types', files(
'wlr_data_device_manager.c',
'wlr_data_source.c',
'wlr_input_device.c',
'wlr_keyboard.c',
'wlr_output.c',
'wlr_output_layout.c',
'wlr_pointer.c',
'wlr_cursor.c',
'wlr_region.c',
'wlr_seat.c',
'wlr_surface.c',
'wlr_tablet_pad.c',
'wlr_tablet_tool.c',
'wlr_touch.c',
'wlr_xdg_shell_v6.c',
'wlr_wl_shell.c',
'wlr_compositor.c',
'wlr_box.c',
),
include_directories: wlr_inc,
dependencies: [wayland_server, pixman, wlr_protos])
lib_wlr_types = static_library(
'wlr_types',
files(
'wlr_data_device_manager.c',
'wlr_data_source.c',
'wlr_input_device.c',
'wlr_keyboard.c',
'wlr_output.c',
'wlr_output_layout.c',
'wlr_pointer.c',
'wlr_cursor.c',
'wlr_region.c',
'wlr_seat.c',
'wlr_surface.c',
'wlr_tablet_pad.c',
'wlr_tablet_tool.c',
'wlr_touch.c',
'wlr_xdg_shell_v6.c',
'wlr_wl_shell.c',
'wlr_compositor.c',
'wlr_box.c',
),
include_directories: wlr_inc,
dependencies: [wayland_server, pixman, wlr_protos],
)