From 307b26a14949b477a5fd30cf6073f4dca304e81d Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 23 Feb 2021 20:32:11 +0100 Subject: build: stop cargo-culting assignment alignment The Sway style guide says we shouldn't align assignments. --- meson.build | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 19cb5130..cb4ee20e 100644 --- a/meson.build +++ b/meson.build @@ -35,29 +35,29 @@ if is_freebsd add_project_arguments('-D_C11_SOURCE', language: 'c') endif -jsonc = dependency('json-c', version: '>=0.13') -pcre = dependency('libpcre') +jsonc = dependency('json-c', version: '>=0.13') +pcre = dependency('libpcre') wayland_server = dependency('wayland-server') wayland_client = dependency('wayland-client') wayland_cursor = dependency('wayland-cursor') -wayland_egl = dependency('wayland-egl') +wayland_egl = dependency('wayland-egl') wayland_protos = dependency('wayland-protocols', version: '>=1.14') -xkbcommon = dependency('xkbcommon') -cairo = dependency('cairo') -pango = dependency('pango') -pangocairo = dependency('pangocairo') -gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf')) -pixman = dependency('pixman-1') -glesv2 = dependency('glesv2') -libevdev = dependency('libevdev') -libinput = dependency('libinput', version: '>=1.6.0') -xcb = dependency('xcb', required: get_option('xwayland')) -drm_full = dependency('libdrm') # only needed for drm_fourcc.h -drm = drm_full.partial_dependency(compile_args: true, includes: true) -bash_comp = dependency('bash-completion', required: false) -fish_comp = dependency('fish', required: false) -math = cc.find_library('m') -rt = cc.find_library('rt') +xkbcommon = dependency('xkbcommon') +cairo = dependency('cairo') +pango = dependency('pango') +pangocairo = dependency('pangocairo') +gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf')) +pixman = dependency('pixman-1') +glesv2 = dependency('glesv2') +libevdev = dependency('libevdev') +libinput = dependency('libinput', version: '>=1.6.0') +xcb = dependency('xcb', required: get_option('xwayland')) +drm_full = dependency('libdrm') # only needed for drm_fourcc.h +drm = drm_full.partial_dependency(compile_args: true, includes: true) +bash_comp = dependency('bash-completion', required: false) +fish_comp = dependency('fish', required: false) +math = cc.find_library('m') +rt = cc.find_library('rt') # Try first to find wlroots as a subproject, then as a system dependency wlroots_version = ['>=0.12.0', '<0.13.0'] -- cgit v1.2.3-54-g00ecf