mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-02 14:18:05 +02:00
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.
23 lines
430 B
Meson
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()],
|
|
)
|