doc/reference/protocols/facebook/meson.build

Thu, 08 Oct 2020 23:37:43 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Thu, 08 Oct 2020 23:37:43 -0500
changeset 40548
42556c49e1e2
parent 38515
2d4d3a8fd23c
child 40598
f88830d41330
permissions
-rw-r--r--

Add PurpleCredentialProvider as the first piece to replace the existing keyring api.

Testing Done:
Added some new unit tests and made sure they passs.

Reviewed at https://reviews.imfreedom.org/r/144/

DOC_MODULE = 'facebook'

# Header files or dirs to ignore when scanning. Use base file/dir names
ignore_hfiles = [
]

# Extra options to supply to gtkdoc-scan.
scan_args = [
    '--deprecated-guards=PURPLE_DISABLE_DEPRECATED',
    '--rebuild-types',
    '--rebuild-sections',
    '--ignore-headers=' + ' '.join(ignore_hfiles),
]

# Extra SGML files that are included by $(DOC_MAIN_XML_FILE).
content_files = [
    libpurple_version_xml,
]

gnome.gtkdoc(DOC_MODULE,
    main_xml : DOC_MODULE + '-docs.xml',
    src_dir : facebook_inc,
    dependencies : facebook_dep,
    install : true,
    scan_args : scan_args,
    gobject_typesfile : DOC_MODULE + '.types',
    content_files : content_files)

mercurial