summaryrefslogtreecommitdiff
path: root/test/ipc/meson.build
blob: ce21135b701d86de0d1941dedb3b1fdad10eb1f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# SPDX-License-Identifier: CC0-1.0

ipc_tests = [
    ['unixsocket_ipc', 'unixsocket_ipc.cpp'],
    ['unixsocket',     'unixsocket.cpp'],
]

foreach test : ipc_tests
    exe = executable(test[0], test[1],
                     dependencies : libcamera_private,
                     link_with : test_libraries,
                     include_directories : test_includes_internal)

    test(test[0], exe, suite : 'ipc')
endforeach