mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-02 17:03:26 +00:00
28 lines
611 B
Meson
28 lines
611 B
Meson
module_name = 'libgimpthumb3'
|
|
|
|
|
|
gnome.gtkdoc(module_name,
|
|
main_sgml: module_name + '-docs.sgml',
|
|
gobject_typesfile: files(module_name + '.types'),
|
|
src_dir: meson.source_root() / 'libgimpthumb',
|
|
|
|
ignore_headers: [
|
|
'libgimpthumb.h',
|
|
],
|
|
|
|
dependencies: [
|
|
fontconfig, freetype2, gtk3, harfbuzz, pangocairo,
|
|
declare_dependency(
|
|
include_directories: rootInclude,
|
|
link_with: [
|
|
libgimpmath,
|
|
libgimpthumb,
|
|
]),
|
|
],
|
|
|
|
scan_args: scan_args_common,
|
|
mkdb_args: mkdb_args_common,
|
|
fixxref_args: [
|
|
'--extra-dir='+ devel_docs_build_root / 'libgimpmath' / 'html',
|
|
],
|
|
)
|