Files
external_libcamera/test/meson.build
T
Kieran Bingham a9fe3adc4f test: media_device: Move test definition
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>
2019-01-02 11:05:26 +02:00

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)