765a918a62
Currently, Meta/Cogl/Clutter makes use of cairo_rectangle_int_t despite the existance of MetaRectangle. In order to make MetaRectangle usable in Cogl/Clutter as well, Mtk would provide such base types that are shared across the various private libraries Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3128>
25 lines
515 B
Meson
25 lines
515 B
Meson
mtk_toml = configure_file(
|
|
input: 'mtk.toml.in',
|
|
output: 'mtk.toml',
|
|
configuration: toml_conf,
|
|
install: true,
|
|
install_dir: docs_dir / 'mtk',
|
|
)
|
|
|
|
custom_target('mtk-doc',
|
|
input: [ mtk_toml, libmutter_mtk_gir[0] ],
|
|
output: 'mtk',
|
|
command: [
|
|
gidocgen,
|
|
'generate',
|
|
gidocgen_common_args,
|
|
'--config=@INPUT0@',
|
|
'--output-dir=@OUTPUT@',
|
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
|
'@INPUT1@',
|
|
],
|
|
build_by_default: true,
|
|
install: true,
|
|
install_dir: docs_dir,
|
|
)
|