Files
NetworkManager/dispatcher/tests/meson.build
Iñigo Martínez 35171b3c3f build: meson: Add trailing commas
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
2018-12-20 13:50:34 +01:00

25 lines
455 B
Meson

test_unit = 'test-dispatcher-envp'
incs = [
dispatcher_inc,
libnm_inc,
]
exe = executable(
test_unit,
test_unit + '.c',
include_directories: incs,
dependencies: nm_core_dep,
c_args: [
'-DNETWORKMANAGER_COMPILATION_TEST',
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
],
link_with: libnm_dispatcher_core,
)
test(
'dispatcher/' + test_unit,
test_script,
args: test_args + [exe.full_path()],
)