2017-11-28 16:44:04 +01:00
|
|
|
if get_option('man')
|
2017-03-21 12:08:47 +01:00
|
|
|
manpages = ['glib-mkenums', 'glib-genmarshal', 'gobject-query']
|
|
|
|
foreach page : manpages
|
|
|
|
custom_target(page + '-man',
|
|
|
|
input: page + '.xml',
|
|
|
|
output: page + '.1',
|
|
|
|
command: xsltproc_command,
|
|
|
|
install: true,
|
2023-12-18 15:52:16 +01:00
|
|
|
install_dir: man1_dir,
|
|
|
|
install_tag: 'doc',
|
|
|
|
)
|
2017-03-21 12:08:47 +01:00
|
|
|
endforeach
|
2016-12-07 11:28:33 +01:00
|
|
|
endif
|
2023-10-10 00:04:21 +02:00
|
|
|
|
|
|
|
expand_content_files = [
|
2023-10-10 00:16:13 +02:00
|
|
|
'boxed.md',
|
2023-10-10 13:29:27 +02:00
|
|
|
'concepts.md',
|
2023-10-10 00:16:51 +02:00
|
|
|
'enum-types.md',
|
2023-10-10 00:17:19 +02:00
|
|
|
'floating-refs.md',
|
2023-10-10 00:17:55 +02:00
|
|
|
'gvalue.md',
|
2023-10-10 13:13:20 +02:00
|
|
|
'tutorial.md',
|
2023-09-25 20:20:37 +02:00
|
|
|
'types.md',
|
2023-09-25 20:29:57 +02:00
|
|
|
'signals.md',
|
2023-10-23 01:04:29 +02:00
|
|
|
'value-collection.md',
|
2023-10-10 00:04:21 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
gobject_toml = configure_file(input: 'gobject.toml.in', output: 'gobject.toml', configuration: toml_conf)
|
|
|
|
|
|
|
|
custom_target('gobject-docs',
|
2023-10-14 19:50:05 +02:00
|
|
|
input: [ gobject_toml, gobject_gir[0] ],
|
2023-10-10 00:04:21 +02:00
|
|
|
output: 'gobject',
|
|
|
|
command: [
|
|
|
|
gidocgen,
|
|
|
|
'generate',
|
|
|
|
gidocgen_common_args,
|
|
|
|
'--config=@INPUT0@',
|
|
|
|
'--output-dir=@OUTPUT@',
|
|
|
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
2023-11-02 12:14:56 +01:00
|
|
|
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../gobject'),
|
2023-10-10 00:04:21 +02:00
|
|
|
'@INPUT1@',
|
|
|
|
],
|
|
|
|
build_by_default: true,
|
|
|
|
depend_files: expand_content_files,
|
|
|
|
)
|