diff options
Diffstat (limited to 'test/stream/meson.build')
-rw-r--r-- | test/stream/meson.build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/stream/meson.build b/test/stream/meson.build new file mode 100644 index 00000000..2f2493de --- /dev/null +++ b/test/stream/meson.build @@ -0,0 +1,11 @@ +stream_tests = [ + [ 'stream_formats', 'stream_formats.cpp' ], +] + +foreach t : stream_tests + exe = executable(t[0], t[1], + dependencies : libcamera_dep, + link_with : test_libraries, + include_directories : test_includes_internal) + test(t[0], exe, suite: 'stream', is_parallel: false) +endforeach |