mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-07 01:46:16 +01:00
702719dee9
Make the `meson.build` match the other docs `meson.build` files. Signed-off-by: Philip Withnall <pwithnall@gnome.org>
34 lines
989 B
Meson
34 lines
989 B
Meson
if get_option('documentation') and enable_gir
|
|
expand_content_files = [
|
|
'migrating-gi.md',
|
|
]
|
|
|
|
girepository_toml = configure_file(
|
|
input: 'girepository.toml.in',
|
|
output: 'girepository.toml',
|
|
configuration: toml_conf,
|
|
)
|
|
|
|
custom_target('girepository-docs',
|
|
input: [ girepository_toml, girepository_gir[0] ],
|
|
output: 'girepository',
|
|
command: [
|
|
gidocgen,
|
|
'generate',
|
|
gidocgen_common_args,
|
|
'--config=@INPUT0@',
|
|
'--output-dir=@OUTPUT@',
|
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../gobject'),
|
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../gmodule'),
|
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../gio'),
|
|
'@INPUT1@',
|
|
],
|
|
build_by_default: true,
|
|
depend_files: expand_content_files,
|
|
install: true,
|
|
install_dir: docs_dir,
|
|
install_tag: 'doc',
|
|
)
|
|
endif
|