mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 07:19:45 +03:00
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>
13 lines
379 B
Meson
13 lines
379 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
stream_tests = [
|
|
['stream_formats', 'stream_formats.cpp'],
|
|
]
|
|
|
|
foreach t : stream_tests
|
|
exe = executable(t[0], t[1],
|
|
dependencies : libcamera_public,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
test(t[0], exe, suite: 'stream')
|
|
endforeach
|