libcamera/test/log/meson.build
Paul Elder 36d62298b2 test: logging: move logging tests to a subdirectory
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>
2019-07-17 14:36:35 +09:00

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