2023-10-10 00:04:21 +02:00
|
|
|
expand_content_files = [
|
2023-10-10 00:25:05 +02:00
|
|
|
'modules.md',
|
2023-10-10 00:04:21 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
gmodule_toml = configure_file(input: 'gmodule.toml.in', output: 'gmodule.toml', configuration: toml_conf)
|
|
|
|
|
|
|
|
custom_target('gmodule-docs',
|
2023-10-14 19:50:05 +02:00
|
|
|
input: [ gmodule_toml, gmodule_gir[0] ],
|
2023-10-10 00:04:21 +02:00
|
|
|
output: 'gmodule',
|
|
|
|
command: [
|
|
|
|
gidocgen,
|
|
|
|
'generate',
|
|
|
|
gidocgen_common_args,
|
|
|
|
'--config=@INPUT0@',
|
|
|
|
'--output-dir=@OUTPUT@',
|
|
|
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
|
|
|
'@INPUT1@',
|
|
|
|
],
|
|
|
|
build_by_default: true,
|
|
|
|
depend_files: expand_content_files,
|
2023-12-21 18:00:06 +01:00
|
|
|
install: true,
|
|
|
|
install_dir: docs_dir,
|
|
|
|
install_tag: 'doc',
|
2023-10-10 00:04:21 +02:00
|
|
|
)
|