build/meson: cleanup clients/***/meson.build
This commit is contained in:
@@ -27,7 +27,10 @@ executable(
|
|||||||
readline_dep,
|
readline_dep,
|
||||||
libnm_libnm_aux_dep,
|
libnm_libnm_aux_dep,
|
||||||
],
|
],
|
||||||
c_args: clients_c_flags + ['-DG_LOG_DOMAIN="@0@"'.format('nmcli')],
|
c_args: [
|
||||||
|
'-DG_LOG_DOMAIN="nmcli"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
link_args: ldflags_linker_script_binary,
|
link_args: ldflags_linker_script_binary,
|
||||||
link_depends: linker_script_binary,
|
link_depends: linker_script_binary,
|
||||||
install: true,
|
install: true,
|
||||||
@@ -45,7 +48,10 @@ generate_docs_nm_settings_nmcli = executable(
|
|||||||
libnmc_dep,
|
libnmc_dep,
|
||||||
libnm_libnm_aux_dep,
|
libnm_libnm_aux_dep,
|
||||||
],
|
],
|
||||||
c_args: clients_c_flags + ['-DG_LOG_DOMAIN="@0@"'.format('nmcli')],
|
c_args: [
|
||||||
|
'-DG_LOG_DOMAIN="nmcli"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
link_args: ldflags_linker_script_binary,
|
link_args: ldflags_linker_script_binary,
|
||||||
link_depends: linker_script_binary,
|
link_depends: linker_script_binary,
|
||||||
)
|
)
|
||||||
@@ -61,7 +67,11 @@ if enable_docs
|
|||||||
test(
|
test(
|
||||||
'check-local-generate-docs-nm-settings-nmcli',
|
'check-local-generate-docs-nm-settings-nmcli',
|
||||||
find_program(join_paths(source_root, 'tools', 'check-compare-generated.sh')),
|
find_program(join_paths(source_root, 'tools', 'check-compare-generated.sh')),
|
||||||
args: [source_root, build_root, 'clients/cli/generate-docs-nm-settings-nmcli.xml'],
|
args: [
|
||||||
|
source_root,
|
||||||
|
build_root,
|
||||||
|
'clients/cli/generate-docs-nm-settings-nmcli.xml',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
settings_docs_source = configure_file(
|
settings_docs_source = configure_file(
|
||||||
|
@@ -1,7 +1,5 @@
|
|||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
name = 'nm-cloud-setup'
|
|
||||||
|
|
||||||
if install_systemdunitdir
|
if install_systemdunitdir
|
||||||
|
|
||||||
nm_cloud_setup_service = configure_file(
|
nm_cloud_setup_service = configure_file(
|
||||||
@@ -23,27 +21,27 @@ if install_systemdunitdir
|
|||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
sources = files(
|
|
||||||
'main.c',
|
|
||||||
'nm-cloud-setup-utils.c',
|
|
||||||
'nm-http-client.c',
|
|
||||||
'nmcs-provider-ec2.c',
|
|
||||||
'nmcs-provider-gcp.c',
|
|
||||||
'nmcs-provider-azure.c',
|
|
||||||
'nmcs-provider.c',
|
|
||||||
)
|
|
||||||
|
|
||||||
executable(
|
executable(
|
||||||
name,
|
'nm-cloud-setup',
|
||||||
sources,
|
files(
|
||||||
|
'main.c',
|
||||||
|
'nm-cloud-setup-utils.c',
|
||||||
|
'nm-http-client.c',
|
||||||
|
'nmcs-provider-ec2.c',
|
||||||
|
'nmcs-provider-gcp.c',
|
||||||
|
'nmcs-provider-azure.c',
|
||||||
|
'nmcs-provider.c',
|
||||||
|
),
|
||||||
dependencies: [
|
dependencies: [
|
||||||
libnmc_base_dep,
|
libnmc_base_dep,
|
||||||
libnmc_dep,
|
libnmc_dep,
|
||||||
libcurl_dep,
|
libcurl_dep,
|
||||||
libnm_libnm_aux_dep,
|
libnm_libnm_aux_dep,
|
||||||
],
|
],
|
||||||
c_args: clients_c_flags +
|
c_args: [
|
||||||
['-DG_LOG_DOMAIN="@0@"'.format(name)],
|
'-DG_LOG_DOMAIN="nm-cloud-setup"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
link_with: libnm_systemd_logging_stub,
|
link_with: libnm_systemd_logging_stub,
|
||||||
link_args: ldflags_linker_script_binary,
|
link_args: ldflags_linker_script_binary,
|
||||||
link_depends: linker_script_binary,
|
link_depends: linker_script_binary,
|
||||||
|
@@ -2,72 +2,88 @@
|
|||||||
|
|
||||||
common_inc = include_directories('.')
|
common_inc = include_directories('.')
|
||||||
|
|
||||||
common_deps = [
|
|
||||||
libnm_dep,
|
|
||||||
libnm_nm_default_dep,
|
|
||||||
]
|
|
||||||
|
|
||||||
common_c_flags = clients_c_flags + ['-DG_LOG_DOMAIN="libnmc"']
|
|
||||||
|
|
||||||
sources = files(
|
|
||||||
'nm-client-utils.c',
|
|
||||||
'nm-secret-agent-simple.c',
|
|
||||||
'nm-vpn-helpers.c',
|
|
||||||
'nm-polkit-listener.c',
|
|
||||||
)
|
|
||||||
|
|
||||||
libnmc_base = static_library(
|
libnmc_base = static_library(
|
||||||
'nmc-base',
|
'nmc-base',
|
||||||
sources: sources,
|
sources: files(
|
||||||
dependencies: common_deps,
|
'nm-client-utils.c',
|
||||||
c_args: common_c_flags,
|
'nm-secret-agent-simple.c',
|
||||||
|
'nm-vpn-helpers.c',
|
||||||
|
'nm-polkit-listener.c',
|
||||||
|
),
|
||||||
|
dependencies: [
|
||||||
|
libnm_dep,
|
||||||
|
libnm_nm_default_dep,
|
||||||
|
],
|
||||||
|
c_args: [
|
||||||
|
'-DG_LOG_DOMAIN="libnmc"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
libnmc_base_dep = declare_dependency(
|
libnmc_base_dep = declare_dependency(
|
||||||
include_directories: common_inc,
|
include_directories: common_inc,
|
||||||
dependencies: common_deps,
|
dependencies: [
|
||||||
|
libnm_dep,
|
||||||
|
libnm_nm_default_dep,
|
||||||
|
],
|
||||||
link_with: libnmc_base,
|
link_with: libnmc_base,
|
||||||
)
|
)
|
||||||
|
|
||||||
settings_docs = 'settings-docs.h'
|
|
||||||
|
|
||||||
if enable_docs
|
if enable_docs
|
||||||
settings_docs_source = custom_target(
|
settings_docs_source = custom_target(
|
||||||
settings_docs,
|
'settings-docs.h',
|
||||||
input: nm_settings_docs_xml_gir,
|
input: nm_settings_docs_xml_gir,
|
||||||
output: settings_docs,
|
output: 'settings-docs.h',
|
||||||
command: [xsltproc, '--output', '@OUTPUT@', join_paths(meson.current_source_dir(), 'settings-docs.xsl'), '@INPUT@'],
|
command: [
|
||||||
|
xsltproc,
|
||||||
|
'--output',
|
||||||
|
'@OUTPUT@',
|
||||||
|
join_paths(meson.current_source_dir(), 'settings-docs.xsl'),
|
||||||
|
'@INPUT@',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
test(
|
test(
|
||||||
'check-settings-docs',
|
'check-settings-docs',
|
||||||
find_program(join_paths(source_root, 'tools', 'check-compare-generated.sh')),
|
find_program(join_paths(source_root, 'tools', 'check-compare-generated.sh')),
|
||||||
args: [source_root, build_root, 'clients/common/' + settings_docs],
|
args: [
|
||||||
|
source_root,
|
||||||
|
build_root,
|
||||||
|
'clients/common/settings-docs.h',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
settings_docs_source = configure_file(
|
settings_docs_source = configure_file(
|
||||||
input: settings_docs + '.in',
|
input: 'settings-docs.h.in',
|
||||||
output: '@BASENAME@',
|
output: '@BASENAME@',
|
||||||
configuration: configuration_data(),
|
configuration: configuration_data(),
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
sources = nm_meta_setting_source + [settings_docs_source] + files(
|
|
||||||
'nm-meta-setting-access.c',
|
|
||||||
'nm-meta-setting-desc.c',
|
|
||||||
)
|
|
||||||
|
|
||||||
libnmc = static_library(
|
libnmc = static_library(
|
||||||
'nmc',
|
'nmc',
|
||||||
sources: sources,
|
sources: nm_meta_setting_source + [settings_docs_source] + files(
|
||||||
dependencies: common_deps + [libnm_libnm_core_aux_dep],
|
'nm-meta-setting-access.c',
|
||||||
c_args: common_c_flags,
|
'nm-meta-setting-desc.c',
|
||||||
|
),
|
||||||
|
dependencies: [
|
||||||
|
libnm_dep,
|
||||||
|
libnm_nm_default_dep,
|
||||||
|
libnm_libnm_core_aux_dep,
|
||||||
|
],
|
||||||
|
c_args: [
|
||||||
|
'-DG_LOG_DOMAIN="libnmc"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
link_depends: settings_docs_source,
|
link_depends: settings_docs_source,
|
||||||
)
|
)
|
||||||
|
|
||||||
libnmc_dep = declare_dependency(
|
libnmc_dep = declare_dependency(
|
||||||
include_directories: common_inc,
|
include_directories: common_inc,
|
||||||
dependencies: common_deps,
|
dependencies: [
|
||||||
|
libnm_dep,
|
||||||
|
libnm_nm_default_dep,
|
||||||
|
],
|
||||||
link_with: libnmc,
|
link_with: libnmc,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@@ -1,45 +1,41 @@
|
|||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
common_c_flags = clients_c_flags + ['-DNETWORKMANAGER_COMPILATION_TEST']
|
|
||||||
|
|
||||||
test_name = 'test-clients-common'
|
|
||||||
|
|
||||||
deps = [
|
|
||||||
libnmc_base_dep,
|
|
||||||
libnmc_dep,
|
|
||||||
]
|
|
||||||
|
|
||||||
exe = executable(
|
exe = executable(
|
||||||
test_name,
|
'test-clients-common',
|
||||||
test_name + '.c',
|
'test-clients-common.c',
|
||||||
dependencies: deps,
|
dependencies: [
|
||||||
c_args: common_c_flags,
|
libnmc_base_dep,
|
||||||
|
libnmc_dep,
|
||||||
|
],
|
||||||
|
c_args: [
|
||||||
|
'-DNETWORKMANAGER_COMPILATION_TEST',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
test(
|
test(
|
||||||
'clients/common/tests/' + test_name,
|
'clients/common/tests/test-clients-common',
|
||||||
test_script,
|
test_script,
|
||||||
args: test_args + [exe.full_path()],
|
args: test_args + [exe.full_path()],
|
||||||
)
|
)
|
||||||
|
|
||||||
test_name = 'test-libnm-core-aux'
|
|
||||||
|
|
||||||
deps = [
|
|
||||||
libnm_dep,
|
|
||||||
libnm_libnm_core_aux_dep,
|
|
||||||
libnm_nm_default_dep,
|
|
||||||
]
|
|
||||||
|
|
||||||
exe = executable(
|
exe = executable(
|
||||||
test_name,
|
'test-libnm-core-aux',
|
||||||
test_name + '.c',
|
'test-libnm-core-aux.c',
|
||||||
dependencies: deps,
|
dependencies: [
|
||||||
c_args: common_c_flags,
|
libnm_dep,
|
||||||
|
libnm_libnm_core_aux_dep,
|
||||||
|
libnm_nm_default_dep,
|
||||||
|
],
|
||||||
|
c_args: [
|
||||||
|
'-DNETWORKMANAGER_COMPILATION_TEST',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
link_with: libnm_systemd_logging_stub,
|
link_with: libnm_systemd_logging_stub,
|
||||||
)
|
)
|
||||||
|
|
||||||
test(
|
test(
|
||||||
'clients/common/tests/' + test_name,
|
'clients/common/tests/test-libnm-core-aux',
|
||||||
test_script,
|
test_script,
|
||||||
args: test_args + [exe.full_path()]
|
args: test_args + [exe.full_path()]
|
||||||
)
|
)
|
||||||
|
@@ -1,18 +1,17 @@
|
|||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
clients_c_flags = ['-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT']
|
|
||||||
|
|
||||||
name = 'nm-online'
|
|
||||||
|
|
||||||
executable(
|
executable(
|
||||||
name,
|
'nm-online',
|
||||||
name + '.c',
|
'nm-online' + '.c',
|
||||||
dependencies: [
|
dependencies: [
|
||||||
libnm_dep,
|
libnm_dep,
|
||||||
libnm_nm_default_dep,
|
libnm_nm_default_dep,
|
||||||
libnm_libnm_aux_dep,
|
libnm_libnm_aux_dep,
|
||||||
],
|
],
|
||||||
c_args: clients_c_flags + ['-DG_LOG_DOMAIN="@0@"'.format(name)],
|
c_args: [
|
||||||
|
'-DG_LOG_DOMAIN="nm-online"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
link_args: ldflags_linker_script_binary,
|
link_args: ldflags_linker_script_binary,
|
||||||
link_depends: linker_script_binary,
|
link_depends: linker_script_binary,
|
||||||
install: true,
|
install: true,
|
||||||
|
@@ -1,66 +1,61 @@
|
|||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
name = 'nmtui'
|
|
||||||
|
|
||||||
common_c_flags = clients_c_flags + ['-DG_LOG_DOMAIN="@0@"'.format(name)]
|
|
||||||
|
|
||||||
subdir('newt')
|
subdir('newt')
|
||||||
|
|
||||||
sources = files(
|
|
||||||
'nm-editor-bindings.c',
|
|
||||||
'nm-editor-utils.c',
|
|
||||||
'nmt-address-list.c',
|
|
||||||
'nmt-connect-connection-list.c',
|
|
||||||
'nmt-device-entry.c',
|
|
||||||
'nmt-edit-connection-list.c',
|
|
||||||
'nmt-editor.c',
|
|
||||||
'nmt-editor-grid.c',
|
|
||||||
'nmt-editor-page.c',
|
|
||||||
'nmt-editor-page-device.c',
|
|
||||||
'nmt-editor-section.c',
|
|
||||||
'nmt-ip-entry.c',
|
|
||||||
'nmt-mac-entry.c',
|
|
||||||
'nmt-mtu-entry.c',
|
|
||||||
'nmt-page-bond.c',
|
|
||||||
'nmt-page-bridge.c',
|
|
||||||
'nmt-page-bridge-port.c',
|
|
||||||
'nmt-page-dsl.c',
|
|
||||||
'nmt-page-ethernet.c',
|
|
||||||
'nmt-page-infiniband.c',
|
|
||||||
'nmt-page-ip4.c',
|
|
||||||
'nmt-page-ip6.c',
|
|
||||||
'nmt-page-ip-tunnel.c',
|
|
||||||
'nmt-page-ppp.c',
|
|
||||||
'nmt-page-team.c',
|
|
||||||
'nmt-page-team-port.c',
|
|
||||||
'nmt-page-vlan.c',
|
|
||||||
'nmt-page-wifi.c',
|
|
||||||
'nmt-password-dialog.c',
|
|
||||||
'nmt-password-fields.c',
|
|
||||||
'nmt-route-editor.c',
|
|
||||||
'nmt-route-entry.c',
|
|
||||||
'nmt-route-table.c',
|
|
||||||
'nmt-slave-list.c',
|
|
||||||
'nmtui.c',
|
|
||||||
'nmtui-connect.c',
|
|
||||||
'nmtui-edit.c',
|
|
||||||
'nmtui-hostname.c',
|
|
||||||
'nmt-utils.c',
|
|
||||||
'nmt-widget-list.c',
|
|
||||||
)
|
|
||||||
|
|
||||||
deps = [
|
|
||||||
libnmc_base_dep,
|
|
||||||
libnmc_dep,
|
|
||||||
libnmt_newt_dep,
|
|
||||||
libnm_libnm_aux_dep,
|
|
||||||
]
|
|
||||||
|
|
||||||
executable(
|
executable(
|
||||||
name,
|
'nmtui',
|
||||||
sources,
|
files(
|
||||||
dependencies: deps,
|
'nm-editor-bindings.c',
|
||||||
c_args: common_c_flags,
|
'nm-editor-utils.c',
|
||||||
|
'nmt-address-list.c',
|
||||||
|
'nmt-connect-connection-list.c',
|
||||||
|
'nmt-device-entry.c',
|
||||||
|
'nmt-edit-connection-list.c',
|
||||||
|
'nmt-editor.c',
|
||||||
|
'nmt-editor-grid.c',
|
||||||
|
'nmt-editor-page.c',
|
||||||
|
'nmt-editor-page-device.c',
|
||||||
|
'nmt-editor-section.c',
|
||||||
|
'nmt-ip-entry.c',
|
||||||
|
'nmt-mac-entry.c',
|
||||||
|
'nmt-mtu-entry.c',
|
||||||
|
'nmt-page-bond.c',
|
||||||
|
'nmt-page-bridge.c',
|
||||||
|
'nmt-page-bridge-port.c',
|
||||||
|
'nmt-page-dsl.c',
|
||||||
|
'nmt-page-ethernet.c',
|
||||||
|
'nmt-page-infiniband.c',
|
||||||
|
'nmt-page-ip4.c',
|
||||||
|
'nmt-page-ip6.c',
|
||||||
|
'nmt-page-ip-tunnel.c',
|
||||||
|
'nmt-page-ppp.c',
|
||||||
|
'nmt-page-team.c',
|
||||||
|
'nmt-page-team-port.c',
|
||||||
|
'nmt-page-vlan.c',
|
||||||
|
'nmt-page-wifi.c',
|
||||||
|
'nmt-password-dialog.c',
|
||||||
|
'nmt-password-fields.c',
|
||||||
|
'nmt-route-editor.c',
|
||||||
|
'nmt-route-entry.c',
|
||||||
|
'nmt-route-table.c',
|
||||||
|
'nmt-slave-list.c',
|
||||||
|
'nmtui.c',
|
||||||
|
'nmtui-connect.c',
|
||||||
|
'nmtui-edit.c',
|
||||||
|
'nmtui-hostname.c',
|
||||||
|
'nmt-utils.c',
|
||||||
|
'nmt-widget-list.c',
|
||||||
|
),
|
||||||
|
dependencies: [
|
||||||
|
libnmc_base_dep,
|
||||||
|
libnmc_dep,
|
||||||
|
libnmt_newt_dep,
|
||||||
|
libnm_libnm_aux_dep,
|
||||||
|
],
|
||||||
|
c_args: [
|
||||||
|
'-DG_LOG_DOMAIN="nmtui"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
link_with: libnm_systemd_logging_stub,
|
link_with: libnm_systemd_logging_stub,
|
||||||
link_args: ldflags_linker_script_binary,
|
link_args: ldflags_linker_script_binary,
|
||||||
link_depends: linker_script_binary,
|
link_depends: linker_script_binary,
|
||||||
|
@@ -1,38 +1,37 @@
|
|||||||
# SPDX-License-Identifier: LGPL-2.1-or-later
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
||||||
|
|
||||||
sources = files(
|
|
||||||
'nmt-newt-button-box.c',
|
|
||||||
'nmt-newt-button.c',
|
|
||||||
'nmt-newt-checkbox.c',
|
|
||||||
'nmt-newt-component.c',
|
|
||||||
'nmt-newt-container.c',
|
|
||||||
'nmt-newt-entry.c',
|
|
||||||
'nmt-newt-entry-numeric.c',
|
|
||||||
'nmt-newt-form.c',
|
|
||||||
'nmt-newt-grid.c',
|
|
||||||
'nmt-newt-hacks.c',
|
|
||||||
'nmt-newt-label.c',
|
|
||||||
'nmt-newt-listbox.c',
|
|
||||||
'nmt-newt-popup.c',
|
|
||||||
'nmt-newt-section.c',
|
|
||||||
'nmt-newt-separator.c',
|
|
||||||
'nmt-newt-stack.c',
|
|
||||||
'nmt-newt-textbox.c',
|
|
||||||
'nmt-newt-toggle-button.c',
|
|
||||||
'nmt-newt-utils.c',
|
|
||||||
'nmt-newt-widget.c',
|
|
||||||
)
|
|
||||||
|
|
||||||
deps = [
|
|
||||||
libnm_nm_default_dep,
|
|
||||||
newt_dep,
|
|
||||||
]
|
|
||||||
|
|
||||||
libnmt_newt = static_library(
|
libnmt_newt = static_library(
|
||||||
'nmt-newt',
|
'nmt-newt',
|
||||||
sources: sources,
|
sources: files(
|
||||||
dependencies: deps,
|
'nmt-newt-button-box.c',
|
||||||
c_args: common_c_flags,
|
'nmt-newt-button.c',
|
||||||
|
'nmt-newt-checkbox.c',
|
||||||
|
'nmt-newt-component.c',
|
||||||
|
'nmt-newt-container.c',
|
||||||
|
'nmt-newt-entry.c',
|
||||||
|
'nmt-newt-entry-numeric.c',
|
||||||
|
'nmt-newt-form.c',
|
||||||
|
'nmt-newt-grid.c',
|
||||||
|
'nmt-newt-hacks.c',
|
||||||
|
'nmt-newt-label.c',
|
||||||
|
'nmt-newt-listbox.c',
|
||||||
|
'nmt-newt-popup.c',
|
||||||
|
'nmt-newt-section.c',
|
||||||
|
'nmt-newt-separator.c',
|
||||||
|
'nmt-newt-stack.c',
|
||||||
|
'nmt-newt-textbox.c',
|
||||||
|
'nmt-newt-toggle-button.c',
|
||||||
|
'nmt-newt-utils.c',
|
||||||
|
'nmt-newt-widget.c',
|
||||||
|
),
|
||||||
|
dependencies: [
|
||||||
|
libnm_nm_default_dep,
|
||||||
|
newt_dep,
|
||||||
|
],
|
||||||
|
c_args: [
|
||||||
|
'-DG_LOG_DOMAIN="nmtui"',
|
||||||
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
libnmt_newt_dep = declare_dependency(
|
libnmt_newt_dep = declare_dependency(
|
||||||
|
Reference in New Issue
Block a user