2018-05-17 00:58:59 +00:00
|
|
|
subdir('xml')
|
|
|
|
|
|
|
|
private_headers = [
|
|
|
|
'config.h',
|
|
|
|
|
|
|
|
'aeslib.h',
|
|
|
|
'assembling.h',
|
|
|
|
'fp_internal.h',
|
2018-12-13 14:13:06 +00:00
|
|
|
'nbis-helpers.h',
|
2018-11-29 14:22:37 +00:00
|
|
|
'fpi-async.h',
|
|
|
|
'fpi-data.h',
|
2018-05-17 00:58:59 +00:00
|
|
|
|
|
|
|
# Drivers
|
|
|
|
'aes1660.h',
|
|
|
|
'aes2501.h',
|
|
|
|
'aes2550.h',
|
|
|
|
'aes2660.h',
|
|
|
|
'aes3k.h',
|
|
|
|
'aesx660.h',
|
|
|
|
'driver_ids.h',
|
|
|
|
'elan.h',
|
2018-11-09 12:28:59 +00:00
|
|
|
'upek_proto.h',
|
2018-05-17 00:58:59 +00:00
|
|
|
'upeksonly.h',
|
|
|
|
'upektc.h',
|
|
|
|
'upektc_img.h',
|
|
|
|
'vfs0050.h',
|
|
|
|
'vfs301_proto_fragments.h',
|
|
|
|
'vfs301_proto.h',
|
|
|
|
'vfs5011_proto.h',
|
|
|
|
|
|
|
|
# NBIS
|
|
|
|
'morph.h',
|
|
|
|
'sunrast.h',
|
|
|
|
'bozorth.h',
|
|
|
|
'defs.h',
|
|
|
|
'log.h',
|
|
|
|
'bz_array.h',
|
|
|
|
'lfs.h',
|
2018-11-09 12:28:59 +00:00
|
|
|
'mytime.h',
|
2018-05-17 00:58:59 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
html_images = [
|
|
|
|
]
|
|
|
|
|
|
|
|
content_files = [
|
|
|
|
'intro.xml'
|
|
|
|
]
|
|
|
|
|
|
|
|
expand_content_files = content_files
|
|
|
|
|
|
|
|
glib_prefix = dependency('glib-2.0').get_pkgconfig_variable('prefix')
|
|
|
|
glib_docpath = join_paths(glib_prefix, 'share', 'gtk-doc', 'html')
|
|
|
|
docpath = join_paths(get_option('datadir'), 'gtk-doc', 'html')
|
|
|
|
|
|
|
|
gnome.gtkdoc('libfprint',
|
|
|
|
main_xml: 'libfprint-docs.xml',
|
|
|
|
src_dir: join_paths(meson.source_root(), 'libfprint'),
|
|
|
|
dependencies: libfprint_dep,
|
|
|
|
content_files: content_files,
|
|
|
|
expand_content_files: expand_content_files,
|
|
|
|
scan_args: [
|
|
|
|
'--ignore-decorators=API_EXPORTED',
|
|
|
|
'--ignore-headers=' + ' '.join(private_headers),
|
|
|
|
],
|
|
|
|
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')),
|
|
|
|
],
|
|
|
|
html_assets: html_images,
|
|
|
|
install: true)
|