spa: use meson's install_subdir to install our header files

All files in spa/include are being installed anyway, so to avoid having to
list each file one-by-one let's use meson's install_subdir() to install all
of them in one go.
This commit is contained in:
Peter Hutterer 2021-04-15 14:21:52 +10:00 committed by Wim Taymans
parent 223f20709d
commit 3de2d1c99c
2 changed files with 3 additions and 150 deletions

View file

@ -1 +1,3 @@
subdir('spa')
install_subdir('spa',
install_dir : get_option('includedir') / spa_name
)