mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00

Now that we bumped our meson requirement, meson is complaining about several features now deprecated even in the minimum required meson version: s/meson.source_root/meson.project_source_root/ to fix: > WARNING: Project targets '>=0.56.0' but uses feature deprecated since '0.56.0': meson.source_root. use meson.project_source_root() or meson.global_source_root() instead. s/meson.build_root/meson.project_build_root/ to fix: > WARNING: Project targets '>=0.56.0' but uses feature deprecated since '0.56.0': meson.build_root. use meson.project_build_root() or meson.global_build_root() instead. Fixing using path() on xdg_email and python ExternalProgram variables: > WARNING: Project targets '>=0.56.0' but uses feature deprecated since '0.55.0': ExternalProgram.path. use ExternalProgram.full_path() instead s/get_pkgconfig_variable *(\([^)]*\))/get_variable(pkgconfig: \1)/ to fix: > WARNING: Project targets '>=0.56.0' but uses feature deprecated since '0.56.0': dependency.get_pkgconfig_variable. use dependency.get_variable(pkgconfig : ...) instead
38 lines
925 B
Meson
38 lines
925 B
Meson
# Extra markdown files
|
|
gimp_ui_doc_content_files = [
|
|
'widget-gallery.md',
|
|
]
|
|
|
|
gimp_ui_doc_toml = configure_file(
|
|
input: 'gimp-ui-3.0.toml.in',
|
|
output: '@BASENAME@',
|
|
configuration: {
|
|
'GIMP_VERSION': gimp_version,
|
|
'GIMP_LOGO': gimp_logo_dir / 'gimp-logo.png',
|
|
},
|
|
)
|
|
|
|
gimp_ui_docs = custom_target('gimp-ui-docs',
|
|
input: libgimpui_gir[0],
|
|
output: 'GimpUi-@0@'.format(gimp_api_version),
|
|
command: [
|
|
gi_docgen,
|
|
'generate',
|
|
'--quiet',
|
|
'--fatal-warnings',
|
|
'--config', gimp_ui_doc_toml,
|
|
'--output-dir=@OUTPUT@',
|
|
'--no-namespace-dir',
|
|
'--content-dir=@0@'.format(meson.current_source_dir()),
|
|
'--add-include-path=@0@'.format(meson.project_build_root() / 'libgimp'),
|
|
'@INPUT@',
|
|
],
|
|
depends: libgimp_gir[0],
|
|
depend_files: [
|
|
gimp_ui_doc_toml,
|
|
gimp_ui_doc_content_files,
|
|
],
|
|
build_by_default: true,
|
|
install: true,
|
|
install_dir: get_option('datadir') / 'doc',
|
|
)
|