mirror of
git://git.yoctoproject.org/poky.git
synced 2025-08-22 00:42:05 +02:00

gi-docgen uses GObject Introspection, so depends on qemu-usermode working. (From OE-Core rev: 524eab0e39c53ea9006b95c9e08ea1f071f1d1f2) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
# gi-docgen is a new gnome documentation generator, which
|
|
# seems to be a successor to gtk-doc:
|
|
# https://gitlab.gnome.org/GNOME/gi-docgen
|
|
|
|
# True if api-documentation and gobject-introspection-data are in DISTRO_FEATURES,
|
|
# and qemu-user is in MACHINE_FEATURES, False otherwise.
|
|
GIDOCGEN_ENABLED ?= "${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation gobject-introspection-data', \
|
|
bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'True', 'False', d), 'False', d)}"
|
|
|
|
# When building native recipes, disable gi-docgen, as it is not necessary,
|
|
# pulls in additional dependencies, and makes build times longer
|
|
GIDOCGEN_ENABLED:class-native = "False"
|
|
GIDOCGEN_ENABLED:class-nativesdk = "False"
|
|
|
|
# meson: default option name to enable/disable gi-docgen. This matches most
|
|
# projects' configuration. In doubts - check meson_options.txt in project's
|
|
# source path.
|
|
GIDOCGEN_MESON_OPTION ?= 'gtk_doc'
|
|
GIDOCGEN_MESON_ENABLE_FLAG ?= 'true'
|
|
GIDOCGEN_MESON_DISABLE_FLAG ?= 'false'
|
|
|
|
# Auto enable/disable based on GIDOCGEN_ENABLED
|
|
EXTRA_OEMESON:prepend = "-D${GIDOCGEN_MESON_OPTION}=${@bb.utils.contains('GIDOCGEN_ENABLED', 'True', '${GIDOCGEN_MESON_ENABLE_FLAG}', '${GIDOCGEN_MESON_DISABLE_FLAG}', d)} "
|
|
|
|
DEPENDS:append = "${@' gi-docgen-native gi-docgen' if d.getVar('GIDOCGEN_ENABLED') == 'True' else ''}"
|
|
|