NetworkManager/docs/libnm-util/meson.build
Thomas Haller 29e566cc71 libnm: drop libnm-util/nm-setting-template.[hc]
These files are a template how to add a new nm-setting-* implementation.

We are not going to add new files to the deprecated libnm-util library,
hence a template for libnm-util is pointless.

libnm-core doesn't have a corresponding template file. Personally, I
don't think such a template are a great idea either, because

  - People are not aware that it exists. Hence, it's unused, badly
    maintained and quite possibly does not follow current best practice.
  - Just copy an actual settings implementation and start from there.
    That seems better to me than having a template.
2018-01-08 16:02:07 +01:00

32 lines
740 B
Meson

doc_module = 'libnm-util'
private_headers = [
'crypto.h',
'nm-utils-private.h',
'nm-setting-private.h',
'nm-param-spec-specialized.h',
'nm-test-utils.h',
'nm-version.h'
]
configure_file(
input: version_xml + '.in',
output: version_xml,
configuration: version_conf
)
gnome.gtkdoc(
doc_module,
main_xml: doc_module + '-docs.sgml',
src_dir: libnm_util_inc,
dependencies: libnm_util_dep,
scan_args: [
'--rebuild-types',
'--rebuild-sections',
'--ignore-headers=' + ' '.join(private_headers)
],
scanobjs_args: '--type-init-func="g_type_init();"',
fixxref_args: '--html-dir=' + join_paths(nm_prefix, gnome.gtkdoc_html_dir(doc_module)),
gobject_typesfile: doc_module + '.types',
install: true
)