summaryrefslogtreecommitdiff
path: root/clients/common/tests/meson.build
blob: cc357cdc8c7f5f6af7abb868a150e115b04c9da0 (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,
  nm_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()]
)