summary refs log tree commit diff
path: root/clients/common/tests/meson.build
blob: 3eb32a47262ff3024cd9d39412238178fe77c25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
test_unit = 'test-general'

deps = [
  libnm_dep,
  libnmc_dep,
  libnmc_base_dep,
  libnm_core_dep,
]

exe = executable(
  'clients-' + test_unit,
  test_unit + '.c',
  dependencies: deps,
  c_args: clients_cflags + [
    '-DNETWORKMANAGER_COMPILATION_TEST',
  ],
)

test(
  'clients/' + test_unit,
  test_script,
  args: test_args + [exe.full_path()],
)