mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 23:20:06 +01:00
It's a better name, because the script merely compiles files and is not specific to "settings-docs.h".
76 lines
1.7 KiB
Meson
76 lines
1.7 KiB
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
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(
|
|
'nmc-base',
|
|
sources: sources,
|
|
dependencies: common_deps,
|
|
c_args: common_c_flags,
|
|
)
|
|
|
|
libnmc_base_dep = declare_dependency(
|
|
include_directories: common_inc,
|
|
dependencies: common_deps,
|
|
link_with: libnmc_base,
|
|
)
|
|
|
|
settings_docs = 'settings-docs.h'
|
|
|
|
if enable_docs
|
|
settings_docs_source = custom_target(
|
|
settings_docs,
|
|
input: nm_settings_docs_xml_gir,
|
|
output: settings_docs,
|
|
command: [xsltproc, '--output', '@OUTPUT@', join_paths(meson.current_source_dir(), 'settings-docs.xsl'), '@INPUT@'],
|
|
)
|
|
|
|
test(
|
|
'check-settings-docs',
|
|
find_program(join_paths(source_root, 'tools', 'check-compare-generated.sh')),
|
|
args: [source_root, build_root, 'clients/common/' + settings_docs],
|
|
)
|
|
else
|
|
settings_docs_source = configure_file(
|
|
input: settings_docs + '.in',
|
|
output: '@BASENAME@',
|
|
configuration: configuration_data(),
|
|
)
|
|
endif
|
|
|
|
sources = nm_meta_setting_source + [settings_docs_source] + files(
|
|
'nm-meta-setting-access.c',
|
|
'nm-meta-setting-desc.c',
|
|
)
|
|
|
|
libnmc = static_library(
|
|
'nmc',
|
|
sources: sources,
|
|
dependencies: common_deps + [libnm_libnm_core_aux_dep],
|
|
c_args: c_flags,
|
|
link_depends: settings_docs_source,
|
|
)
|
|
|
|
libnmc_dep = declare_dependency(
|
|
include_directories: common_inc,
|
|
dependencies: common_deps,
|
|
link_with: libnmc,
|
|
)
|
|
|
|
if (enable_introspection or enable_nmtui) and enable_tests
|
|
subdir('tests')
|
|
endif
|