mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-04-26 23:00:39 +02:00
20 lines
385 B
Meson
20 lines
385 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
exe = executable(
|
|
'test-cloud-setup-general',
|
|
'test-cloud-setup-general.c',
|
|
dependencies: [
|
|
libnmc_base_dep,
|
|
libnmc_dep,
|
|
libnm_cloud_setup_core_dep,
|
|
],
|
|
c_args: [
|
|
'-DG_LOG_DOMAIN="test"',
|
|
],
|
|
)
|
|
|
|
test(
|
|
'clients/cloud-setup/tests/test-cloud-setup-general',
|
|
test_script,
|
|
args: test_args + [exe.full_path()],
|
|
)
|