
Add missing trailing commas that avoids getting noise when another file/parameter is added and eases reviewing changes[0]. [0] https://gitlab.gnome.org/GNOME/dconf/merge_requests/11#note_291585
24 lines
353 B
Meson
24 lines
353 B
Meson
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()],
|
|
)
|