meson: Fix coding style in meson.build files

Consistently go for 4 spaces indentation, and always put a space between
the colon in argument lists, as per the examples from the meson
documentation.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2019-05-23 00:05:30 +03:00
parent 1f32abb995
commit 41adc3f8d3
9 changed files with 57 additions and 57 deletions

View file

@ -7,5 +7,5 @@ foreach t : v4l2_subdevice_tests
exe = executable(t[0], [t[1], 'v4l2_subdevice_test.cpp'],
link_with : test_libraries,
include_directories : test_includes_internal)
test(t[0], exe, suite: 'v4l2_subdevice', is_parallel: false)
test(t[0], exe, suite : 'v4l2_subdevice', is_parallel : false)
endforeach