9f4aa6ebf2
With meson >= 47.0, building gnome-shell will fail when --rebuild-types is used as an option for gtk-doc, so stop using that option and bump the meson requirement. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/191
24 lines
450 B
Meson
24 lines
450 B
Meson
private_headers = [
|
|
'st-private.h',
|
|
'st-theme-node-private.h'
|
|
]
|
|
|
|
configure_file(
|
|
input: 'version.xml.in',
|
|
output: 'version.xml',
|
|
configuration: version_conf
|
|
)
|
|
|
|
gnome.gtkdoc('st',
|
|
main_sgml: 'st-docs.sgml',
|
|
src_dir: [
|
|
join_paths(meson.source_root(), 'src', 'st'),
|
|
join_paths(meson.build_root(), 'src', 'st')
|
|
],
|
|
scan_args: [
|
|
'--ignore-headers=' + ' '.join(private_headers),
|
|
'--rebuild-sections'
|
|
],
|
|
install: true
|
|
)
|