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>
11 lines
322 B
Meson
11 lines
322 B
Meson
ipu3_test = [
|
|
['ipu3_pipeline_test', 'ipu3_pipeline_test.cpp'],
|
|
]
|
|
|
|
foreach t : ipu3_test
|
|
exe = executable(t[0], t[1],
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
|
|
test(t[0], exe, suite : 'ipu3', is_parallel : false)
|
|
endforeach
|