1
0
Fork 0
mutter-performance-source/doc/reference/clutter/meson.build
Bilal Elmoussaoui fe3192169a Merge CoglPango inside of Clutter
As that is where the whole text rendering integration happens
And would allow us to get rid of some over-abstraction in cogl-pango,
simplify
ClutterSnapshot integration as well

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/4004>
2024-10-08 16:00:57 +00:00

31 lines
791 B
Meson

clutter_toml = configure_file(
input: 'clutter.toml.in',
output: 'clutter.toml',
configuration: toml_conf,
install: true,
install_dir: docs_dir / 'clutter',
)
custom_target('clutter-doc',
input: [ clutter_toml, libmutter_clutter_gir[0] ],
output: 'clutter',
command: [
gidocgen,
'generate',
gidocgen_common_args,
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../mtk/mtk'),
'--add-include-path=@0@'.format(meson.current_build_dir() / '../../../cogl/cogl'),
'--config=@INPUT0@',
'--output-dir=@OUTPUT@',
'--content-dir=@0@'.format(meson.current_source_dir()),
'@INPUT1@',
],
depends: [
libmutter_mtk_gir[0],
libmutter_cogl_gir[0],
],
build_by_default: true,
install: true,
install_dir: docs_dir,
)