Files
external_libcamera/test/meson.build
T
Laurent Pinchart 4114a93dff tests: Add a base Test class
The base Test class is meant to provide infrastructure common to all
tests. It is very limited for now, and should be extended with at least
logging and assertion handling.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
2018-12-21 06:44:55 +02:00

12 lines
299 B
Meson

libtest_sources = files([
'test.cpp',
])
libtest = static_library('libtest', libtest_sources)
test_init = executable('test_init', 'init.cpp',
link_with : libcamera,
include_directories : libcamera_includes)
test('Initialisation test', test_init)