22 lines
1008 B
Meson
22 lines
1008 B
Meson
if get_option('gtk_doc')
|
|
configure_file(input: 'version.xml.in', output: 'version.xml', configuration: version_conf)
|
|
|
|
gnome.gtkdoc('gail-libgail-util3',
|
|
mode: 'none',
|
|
main_xml: 'gail-libgail-util-docs.sgml',
|
|
src_dir: libgailutilinc,
|
|
dependencies: [libgtk_dep, libgailutil],
|
|
gobject_typesfile: join_paths(meson.current_source_dir(), 'gail-libgail-util3.types'),
|
|
scan_args: [
|
|
'--ignore-decorators=_GDK_EXTERN|G_GNUC_WARN_UNUSED_RESULT',
|
|
],
|
|
fixxref_args: [
|
|
'--html-dir=@0@'.format(docpath),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'glib')),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'gobject')),
|
|
'--extra-dir=@0@'.format(join_paths(glib_docpath, 'gio')),
|
|
'--extra-dir=../gtk',
|
|
],
|
|
install: true)
|
|
endif
|