gimp/devel-docs/meson.build
Jehan b64f79fed9 devel-docs: don't build reference docs when GIR aren't generated.
This can happens in cross-compilation cases for instance.
2023-05-11 12:46:57 +02:00

17 lines
306 B
Meson

devel_docs_build_root = meson.current_build_dir()
scan_args_common = [
'--deprecated-guards=GIMP_DISABLE_DEPRECATED',
]
mkdb_args_common = [
'--name-space=gimp',
]
if gi_docgen.found() and have_gobject_introspection
subdir('reference')
endif
if get_option('g-ir-doc')
subdir('g-ir-docs')
endif