daf729de11
Replace deprecated functions with their direct replacements: - dep.get_pkgconfig_variable() → dep.get_variable() - prg.path() → prg.full_path() - source/build_root() → project_source/build_root() In one case we need meson.global_source_root() that was only added in meson 0.58, so bump the requirement to that. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2077>
24 lines
466 B
Meson
24 lines
466 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.project_source_root(), 'src', 'st'),
|
|
join_paths(meson.project_build_root(), 'src', 'st')
|
|
],
|
|
scan_args: [
|
|
'--ignore-headers=' + ' '.join(private_headers),
|
|
'--rebuild-sections'
|
|
],
|
|
install: true
|
|
)
|