meson: Fix coding style when declaring arrays
The meson.build files mix array declarations with and without a space after the opening and before the closing square bracket. The vast majority of cases don't use spaces, so standardize on that. While it it, fix indentation in a few places. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
9e369da993
commit
db27029ce4
19 changed files with 49 additions and 49 deletions
|
@ -29,7 +29,7 @@ if glib_dep.found() and gstvideo_dep.found() and gstallocator_dep.found()
|
|||
# complain about the ones we are not using. Silence the -Wunused-function
|
||||
# warning in that case.
|
||||
if cc.get_id() == 'clang' and glib_dep.version().version_compare('<2.63.0')
|
||||
libcamera_gst_cpp_args += [ '-Wno-unused-function' ]
|
||||
libcamera_gst_cpp_args += ['-Wno-unused-function']
|
||||
endif
|
||||
|
||||
libcamera_gst = shared_library('gstlibcamera',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue