2017-11-28 16:44:04 +01:00
|
|
|
if get_option('gtk_doc')
|
2016-12-07 11:28:33 +01:00
|
|
|
subdir('xml')
|
|
|
|
|
|
|
|
ignore_headers = [
|
|
|
|
'tests',
|
|
|
|
'gatomicarray.h',
|
2018-11-23 14:27:04 +01:00
|
|
|
'gobject_probes.h',
|
2016-12-07 11:28:33 +01:00
|
|
|
'gobject_trace.h',
|
2018-11-19 21:10:09 +01:00
|
|
|
'gtype-private.h',
|
2019-03-04 12:12:59 +01:00
|
|
|
'glib-enumtypes.h',
|
2022-10-03 16:36:04 +02:00
|
|
|
'gobject-visibility.h',
|
2016-12-07 11:28:33 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
docpath = join_paths(glib_datadir, 'gtk-doc', 'html')
|
|
|
|
version_conf = configuration_data()
|
|
|
|
version_conf.set('GLIB_VERSION', meson.project_version())
|
|
|
|
configure_file(
|
|
|
|
input: 'version.xml.in',
|
|
|
|
output: 'version.xml',
|
|
|
|
configuration: version_conf
|
|
|
|
)
|
|
|
|
|
2017-11-10 02:35:45 +01:00
|
|
|
gtkdocincl = include_directories('.')
|
|
|
|
|
2016-12-07 11:28:33 +01:00
|
|
|
gnome.gtkdoc('gobject',
|
|
|
|
main_xml : 'gobject-docs.xml',
|
|
|
|
namespace : 'g',
|
|
|
|
mode : 'none',
|
|
|
|
dependencies : [libgobject_dep, libglib_dep],
|
2017-11-10 02:35:45 +01:00
|
|
|
include_directories : [gtkdocincl],
|
2016-12-09 19:51:41 +01:00
|
|
|
src_dir : 'gobject',
|
2022-10-03 16:36:04 +02:00
|
|
|
scan_args : [
|
|
|
|
'--ignore-decorators=' + '|'.join(ignore_decorators.replace('GLIB', 'GOBJECT')),
|
2018-06-27 17:12:01 +02:00
|
|
|
'--rebuild-types',
|
2016-12-07 11:28:33 +01:00
|
|
|
'--ignore-headers=' + ' '.join(ignore_headers),
|
|
|
|
],
|
|
|
|
content_files : [
|
|
|
|
'glib-mkenums.xml',
|
|
|
|
'glib-genmarshal.xml',
|
|
|
|
'gobject-query.xml',
|
|
|
|
'tut_gobject.xml',
|
|
|
|
'tut_gsignal.xml',
|
|
|
|
'tut_gtype.xml',
|
|
|
|
'tut_howto.xml',
|
|
|
|
'tut_intro.xml',
|
|
|
|
'tut_tools.xml'
|
|
|
|
],
|
|
|
|
html_assets : [
|
|
|
|
'images/glue.png'
|
|
|
|
],
|
|
|
|
fixxref_args: [
|
|
|
|
'--html-dir=' + docpath,
|
2018-09-23 22:01:48 +02:00
|
|
|
'--extra-dir=' + join_paths('gobject', '..', 'glib', 'html'),
|
2016-12-07 11:28:33 +01:00
|
|
|
],
|
2019-07-09 21:51:32 +02:00
|
|
|
install: true,
|
|
|
|
check: true,
|
2016-12-07 11:28:33 +01:00
|
|
|
)
|
|
|
|
endif
|
|
|
|
|
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,
|
|
|
|
install_dir: man1_dir)
|
|
|
|
endforeach
|
2016-12-07 11:28:33 +01:00
|
|
|
endif
|