mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-19 10:25:05 +03:00
Since there are two logging tests now, move them to their own subdirectory. Update meson as necessary. Signed-off-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13 lines
360 B
Meson
13 lines
360 B
Meson
log_test = [
|
|
['log_api', 'log_api.cpp'],
|
|
['log_process', 'log_process.cpp'],
|
|
]
|
|
|
|
foreach t : log_test
|
|
exe = executable(t[0], t[1],
|
|
dependencies : libcamera_dep,
|
|
link_with : test_libraries,
|
|
include_directories : test_includes_internal)
|
|
|
|
test(t[0], exe, suite : 'log')
|
|
endforeach
|