bcc646ff6f
This fixes: Wrong type number; string expected MR: https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1060
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
|
|
)
|