mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
meson: Install vala apis
Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
This commit is contained in:
parent
0db18ba7d9
commit
3a91cb1c29
2 changed files with 13 additions and 0 deletions
|
|
@ -64,6 +64,8 @@ if pulsedspdir == ''
|
|||
join_paths(libdir, 'pulseaudio')
|
||||
endif
|
||||
|
||||
vapidir = join_paths(datadir, 'vala', 'vapi')
|
||||
|
||||
bashcompletiondir = get_option('bashcompletiondir')
|
||||
if bashcompletiondir == ''
|
||||
bash_completion_dep = dependency('bash-completion', required : false)
|
||||
|
|
@ -441,6 +443,7 @@ endif
|
|||
subdir('shell-completion/bash')
|
||||
subdir('shell-completion/zsh')
|
||||
subdir('src')
|
||||
subdir('vala')
|
||||
|
||||
############################################################
|
||||
|
||||
|
|
|
|||
10
vala/meson.build
Normal file
10
vala/meson.build
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
vala_apis = [
|
||||
'libpulse',
|
||||
'libpulse-mainloop-glib',
|
||||
'libpulse-simple',
|
||||
]
|
||||
|
||||
foreach api : vala_apis
|
||||
install_data(api + '.deps', api + '.vapi',
|
||||
install_dir : vapidir)
|
||||
endforeach
|
||||
Loading…
Add table
Add a link
Reference in a new issue