gplugin/gplugin

closing this branch as there is no demand for this
feature/ruby-loader
17 months ago, Gary Kramlich
d44bad5e041e
closing this branch as there is no demand for this
DOC_MODULE = 'gplugin-gtk'
# Header files or dirs to ignore when scanning. Use base file/dir names
ignore_hfiles = [
'gplugin-gtk.h',
]
ignore_hfiles += GPLUGIN_GTK_PRIVATE_HEADERS
# Extra options to supply to gtkdoc-scan.
scan_args = [
'--deprecated-guards=GPLUGIN_GTK_DISABLE_DEPRECATED',
'--rebuild-types',
'--rebuild-sections',
'--ignore-headers=' + ' '.join(ignore_hfiles),
]
# Extra options to supply to gtkdoc-mkdb.
mkdb_args = [
'--ignore-files=' + ' '.join(ignore_hfiles),
]
gplugin_gtk_version_xml = configure_file(
input : 'version.xml.in',
output : 'version.xml',
configuration : version_conf)
content_files = [
]
gnome.gtkdoc(DOC_MODULE,
main_xml : DOC_MODULE + '-docs.xml',
src_dir : gplugin_gtk_inc,
dependencies : gplugin_gtk_dep,
install : true,
scan_args : scan_args,
mkdb_args : mkdb_args,
gobject_typesfile : DOC_MODULE + '.types',
content_files : content_files,
)