libcamera/test/pipeline/ipu3/meson.build
Laurent Pinchart 41adc3f8d3 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>
2019-05-23 11:55:45 +03:00

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