about summary refs log tree commit diff
path: root/src/libnm-client-aux-extern/tests/meson.build
blob: 341ead0f7b79109bf777e0b465c9f7d28d49549a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-License-Identifier: LGPL-2.1-or-later

exe = executable(
  'test-libnm-client-aux',
  'test-libnm-client-aux.c',
  dependencies: [
    libnm_dep,
    glib_dep,
  ],
  link_with: [
    libnm_core_aux_extern,
    libnm_log_null,
    libnm_glib_aux,
    libnm_std_aux,
    libc_siphash,
  ],
)

test(
  'src/libnm-client-aux-extern/tests/test-libnm-client-aux',
  test_script,
  args: test_args + [exe.full_path()]
)