a9fe3adc4f
The test definition for the media_device_test executable should be located with the exectuable definition. Move it to the meson.build of that test suite subdir. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22 lines
428 B
Meson
22 lines
428 B
Meson
subdir('libtest')
|
|
|
|
test_libraries = [libcamera, libtest]
|
|
|
|
test_includes_public = [
|
|
libtest_includes,
|
|
libcamera_includes,
|
|
]
|
|
|
|
test_includes_internal = [
|
|
test_includes_public,
|
|
libcamera_internal_includes,
|
|
]
|
|
|
|
list = executable('list', 'list.cpp',
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_public)
|
|
|
|
subdir('media_device')
|
|
|
|
test('List Camera API tests', list)
|