diff options
Diffstat (limited to 'test/ipc')
-rw-r--r-- | test/ipc/meson.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ipc/meson.build b/test/ipc/meson.build index ce21135b..8e447d22 100644 --- a/test/ipc/meson.build +++ b/test/ipc/meson.build @@ -1,15 +1,15 @@ # SPDX-License-Identifier: CC0-1.0 ipc_tests = [ - ['unixsocket_ipc', 'unixsocket_ipc.cpp'], - ['unixsocket', 'unixsocket.cpp'], + {'name': 'unixsocket_ipc', 'sources': ['unixsocket_ipc.cpp']}, + {'name': 'unixsocket', 'sources': ['unixsocket.cpp']}, ] foreach test : ipc_tests - exe = executable(test[0], test[1], + exe = executable(test['name'], test['sources'], dependencies : libcamera_private, link_with : test_libraries, include_directories : test_includes_internal) - test(test[0], exe, suite : 'ipc') + test(test['name'], exe, suite : 'ipc') endforeach |