doc/reference/protocols/facebook/meson.build

Tue, 13 Oct 2020 00:42:59 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Tue, 13 Oct 2020 00:42:59 -0500
changeset 40555
0bf5825aab0a
parent 38515
2d4d3a8fd23c
child 40598
f88830d41330
permissions
-rw-r--r--

Replace pidgin_set_urgent with gtk_window_set_urgency_hint

Testing Done:
Compiled and grepped for usage of the winpidgin functions that were removed.

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

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