summaryrefslogtreecommitdiff
path: root/clients/common/tests/meson.build
blob: faddd808cda92e1150ff1e6c6753776e13f7b692 (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(
  test_unit,
  test_script,
  args: test_args + [exe.full_path()]
)