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