From dd7d1baeceba8b2c8964b367797103f24a19adc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Thu, 21 Nov 2019 20:24:29 +0100 Subject: [PATCH 012/181] meson: Use multiline-array for default dirvers listing It will make reviews and diffs nicer to handle when adding new drivers. --- meson.build | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8d06d45..a499a38 100644 --- a/meson.build +++ b/meson.build @@ -51,7 +51,28 @@ mathlib_dep = cc.find_library('m', required: false) # Drivers drivers = get_option('drivers').split(',') virtual_drivers = [ 'virtual_image' ] -default_drivers = [ 'upektc_img', 'vfs5011', 'aes3500', 'aes4000', 'aes1610', 'aes1660', 'aes2660', 'aes2501', 'aes2550', 'vfs101', 'vfs301', 'vfs0050', 'etes603', 'vcom5s', 'synaptics', 'elan', 'uru4000', 'upektc', 'upeksonly', 'upekts' ] +default_drivers = [ + 'upektc_img', + 'vfs5011', + 'aes3500', + 'aes4000', + 'aes1610', + 'aes1660', + 'aes2660', + 'aes2501', + 'aes2550', + 'vfs101', + 'vfs301', + 'vfs0050', + 'etes603', + 'vcom5s', + 'synaptics', + 'elan', + 'uru4000', + 'upektc', + 'upeksonly', + 'upekts', +] all_drivers = default_drivers + virtual_drivers -- 2.24.1