diff options
| author | Michael Biebl <biebl@debian.org> | 2018-04-23 18:00:21 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-04-23 18:00:21 +0200 |
| commit | f60117b41d5433be1b4a96d82cd11d0c3dce9b63 (patch) | |
| tree | 2dd55c4ab0fdcbe9cddb26adb4a554b1a45c73c8 /docs/libnm-glib/meson.build | |
| parent | 7e9ff09fcb2366b383b7ebbec80d2f6fff117290 (diff) | |
New upstream version 1.11.3 upstream/1.11.3
Diffstat (limited to 'docs/libnm-glib/meson.build')
| -rw-r--r-- | docs/libnm-glib/meson.build | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/docs/libnm-glib/meson.build b/docs/libnm-glib/meson.build new file mode 100644 index 00000000..b760ce00 --- /dev/null +++ b/docs/libnm-glib/meson.build @@ -0,0 +1,39 @@ +doc_module = libnm_glib_name + +private_headers = [ + 'common.h', + 'nm-dbus-helpers-private.h', + 'nm-device-private.h', + 'nm-object-cache.h', + 'nm-object-private.h', + 'nm-remote-connection-private.h', + 'nm-types-private.h', + 'nm-secret-agent-glue.h', + 'nm-vpn-plugin-glue.h' +] + +configure_file( + input: version_xml + '.in', + output: version_xml, + configuration: version_conf +) + +gnome.gtkdoc( + doc_module, + main_xml: doc_module + '-docs.xml', + src_dir: join_paths(meson.source_root(), 'libnm-glib'), + dependencies: [ + libnm_glib_dep, + libnm_glib_vpn_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', + html_assets: doc_module + '.png', + install: true +) |