mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-01 06:48:00 +02:00
The library is called "libnm_core". So the dependency should be called
"libnm_core_dep", like in all other cases.
(cherry picked from commit c27ad37c27)
23 lines
356 B
Meson
23 lines
356 B
Meson
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()],
|
|
)
|