mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-12 14:59:44 +03:00
The meson style, which libcamera follows, recommends a space before colons in function parameters. Fix the style violations through the project. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Umang Jain <umang.jain@ideasonboard.com>
14 lines
503 B
Meson
14 lines
503 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
stream_tests = [
|
|
{'name': 'stream_colorspace', 'sources': ['stream_colorspace.cpp']},
|
|
{'name': 'stream_formats', 'sources': ['stream_formats.cpp']},
|
|
]
|
|
|
|
foreach test : stream_tests
|
|
exe = executable(test['name'], test['sources'],
|
|
dependencies : libcamera_public,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
test(test['name'], exe, suite : 'stream')
|
|
endforeach
|