24 lines
425 B
Meson
24 lines
425 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
exe = executable(
|
|
'test-cloud-setup-general',
|
|
'test-cloud-setup-general.c',
|
|
dependencies: [
|
|
libnm_cloud_setup_core_dep,
|
|
libnm_dep,
|
|
glib_dep,
|
|
],
|
|
link_with: [
|
|
libnmc_base,
|
|
libnm_glib_aux,
|
|
libnm_std_aux,
|
|
libc_siphash,
|
|
],
|
|
)
|
|
|
|
test(
|
|
'clients/cloud-setup/tests/test-cloud-setup-general',
|
|
test_script,
|
|
args: test_args + [exe.full_path()],
|
|
)
|