diff options
Diffstat (limited to 'test/process/meson.build')
-rw-r--r-- | test/process/meson.build | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/test/process/meson.build b/test/process/meson.build index c4d83d6c..a80dc2d9 100644 --- a/test/process/meson.build +++ b/test/process/meson.build @@ -1,12 +1,14 @@ +# SPDX-License-Identifier: CC0-1.0 + process_tests = [ - [ 'process_test', 'process_test.cpp' ], + {'name': 'process_test', 'sources': ['process_test.cpp']}, ] -foreach t : process_tests - exe = executable(t[0], t[1], - dependencies : libcamera_dep, +foreach test : process_tests + exe = executable(test['name'], test['sources'], + dependencies : libcamera_private, link_with : test_libraries, include_directories : test_includes_internal) - test(t[0], exe, suite : 'process', is_parallel : false) + test(test['name'], exe, suite : 'process', is_parallel : false) endforeach |