NetworkManager/clients/cloud-setup/tests/meson.build
Thomas Haller 309dccf5f9
build/meson: cleanup libnm-glib-aux dependencies
Avoid dependencies but explicitly link the static library where it is
used.

This also fixes that we linked libnm-log-core into
libnm-settings-plugin-ifcfg-rh.so, which duplicated the symbols
while it should used them from NetworkManager.
2021-02-28 10:42:04 +01:00

23 lines
430 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,
libnmc_base_dep,
libnmc_dep,
glib_dep,
],
link_with: [
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()],
)