mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-15 21:20:09 +00:00
758830e7c3
The 'documentation' option also guarded the man page build. Instead if skipping the whole docs subdir skip the specific gtkdoc calls, so that the man page build still works. This brings it in line with the gtk3 meson build.
23 lines
801 B
Meson
23 lines
801 B
Meson
if get_option('documentation')
|
|
glib_prefix = dependency('glib-2.0').get_pkgconfig_variable('prefix')
|
|
glib_docpath = join_paths(glib_prefix, 'share', 'gtk-doc', 'html')
|
|
|
|
cairo_prefix = dependency('cairo-gobject').get_pkgconfig_variable('prefix')
|
|
cairo_docpath = join_paths(cairo_prefix, 'share', 'gtk-doc', 'html', 'cairo')
|
|
|
|
gdkpixbuf_prefix = dependency('gdk-pixbuf-2.0').get_pkgconfig_variable('prefix')
|
|
gdkpixbuf_docpath = join_paths(gdkpixbuf_prefix, 'share', 'gtk-doc', 'html', 'gdk-pixbuf')
|
|
|
|
docpath = join_paths(gtk_datadir, 'gtk-doc', 'html')
|
|
|
|
version_conf = configuration_data()
|
|
version_conf.set('GTK_VERSION', meson.project_version())
|
|
|
|
src_dir_conf = configuration_data()
|
|
src_dir_conf.set('SRC_DIR', meson.source_root())
|
|
endif
|
|
|
|
subdir('gdk')
|
|
subdir('gsk')
|
|
subdir('gtk')
|