mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-11-17 16:08:21 +01:00
.gitlab-ci
.reuse
LICENSES
docs
reference
gio
gdbus-object-manager-example
.gitignore
gdbus-object-manager-example-docs.xml
gdbus-object-manager-example-sections.txt
meson.build
xml
.gitignore
concat-files-helper.py
gapplication.xml
gdbus-codegen.xml
gdbus.xml
gio-docs-unix.xml
gio-docs-win32.xml
gio-docs.xml
gio-querymodules.xml
gio-sections-common.txt
gio-sections-win32.txt
gio.xml
glib-compile-resources.xml
glib-compile-schemas.xml
gresource.xml
gsettings.xml
gvfs-overview.odg
gvfs-overview.png
menu-example.png
menu-model.png
meson.build
migrating-gconf.xml
migrating-gdbus.xml
migrating-gnome-vfs.xml
migrating-posix.xml
overview.xml
version.xml.in
glib
gobject
.gitignore
AUTHORS
COPYING
NEWS
meson.build
CODEOWNERS
backports.md
debugging.txt
macros.txt
meson-version.md
rationales.md
releasing.md
roadmap.md
supported-platforms.md
testing.md
toolchain-requirements.md
fuzzing
gio
glib
gmodule
gobject
gthread
m4macros
po
subprojects
tests
tools
.clang-format
.dir-locals.el
.editorconfig
.gitignore
.gitlab-ci.yml
.gitmodules
.lcovrc
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
HACKING
INSTALL.md
NEWS
README.md
README.win32.md
SECURITY.md
glib.doap
meson.build
meson_options.txt
msvc_recommended_pragmas.h
The relevant parts of the generated example documentation are already `xi:include`d into the `migrating-gdbus.xml` page, so are turned into HTML there. Installing them separately means they also get installed into `/usr/share/gtk-doc/html/gdbus-object-manager-example/`, which seems redundant. Signed-off-by: Philip Withnall <withnall@endlessm.com>
12 lines
360 B
Meson
12 lines
360 B
Meson
gdbus_object_manager_example_doc = gnome.gtkdoc('gdbus-object-manager-example',
|
|
main_xml : 'gdbus-object-manager-example-docs.xml',
|
|
namespace : 'example',
|
|
dependencies : [libgdbus_example_objectmanager_dep],
|
|
src_dir : 'gio/tests/gdbus-object-manager-example',
|
|
scan_args : gtkdoc_common_scan_args + [
|
|
'--rebuild-types',
|
|
],
|
|
install : false,
|
|
)
|
|
|