libcamera/test/controls/meson.build
Kieran Bingham 5c01d54120 libcamera: rename public libcamera dependency
Now that we have a libcamera_private, make the public only dependency
libcamera_public so that it is clear which interface is being linked.

Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2021-06-25 16:11:11 +01:00

16 lines
591 B
Meson

# SPDX-License-Identifier: CC0-1.0
control_tests = [
['control_info', 'control_info.cpp'],
['control_info_map', 'control_info_map.cpp'],
['control_list', 'control_list.cpp'],
['control_value', 'control_value.cpp'],
]
foreach t : control_tests
exe = executable(t[0], t[1],
dependencies : libcamera_public,
link_with : test_libraries,
include_directories : test_includes_internal)
test(t[0], exe, suite : 'controls', is_parallel : false)
endforeach