mirror of
https://github.com/brl/mutter.git
synced 2025-07-21 17:10:30 +00:00

gtk-doc support was removed around 3 years ago with commit 7dc0b0e6
.
Now that we have Meson and [MRs related to documentation], it makes
sense to re-enable this, so people who want to use libmutter can do so
without having to actually dive in the code.
[MRs related to documentation]: https://gitlab.gnome.org/GNOME/mutter/merge_requests/269
14 lines
766 B
Meson
14 lines
766 B
Meson
gtkdoc_entities_cdata = configuration_data()
|
|
gtkdoc_entities_cdata.set_quoted('PACKAGE', meson.project_name())
|
|
gtkdoc_entities_cdata.set_quoted('PACKAGE_BUGREPORT', 'https://gitlab.gnome.org/GNOME/mutter/issues/new')
|
|
gtkdoc_entities_cdata.set_quoted('PACKAGE_NAME', meson.project_name())
|
|
gtkdoc_entities_cdata.set_quoted('PACKAGE_STRING', '@0@ - @1@'.format(meson.project_name(), meson.project_version()))
|
|
gtkdoc_entities_cdata.set_quoted('PACKAGE_TARNAME', 'mutter.tar.xz')
|
|
gtkdoc_entities_cdata.set_quoted('PACKAGE_URL', 'https://gitlab.gnome.org/GNOME/mutter/')
|
|
gtkdoc_entities_cdata.set_quoted('PACKAGE_VERSION', meson.project_version())
|
|
configure_file(
|
|
input: 'gtkdocentities.ent.in',
|
|
output: 'gtkdocentities.ent',
|
|
configuration: gtkdoc_entities_cdata,
|
|
)
|