libfprint: Make sure we install fp-enums.h in the right folder

Since we were not explictly setting the install_dir, it was endind up in
$PREFIX/include by default, while we use our project name as subfolder.
This commit is contained in:
Marco Trevisan (Treviño) 2019-12-17 15:39:24 +01:00
parent f3f768e738
commit bfc75de778

View file

@ -176,7 +176,9 @@ other_sources = []
fp_enums = gnome.mkenums_simple('fp-enums',
sources: libfprint_public_headers,
install_header : true)
install_header: true,
install_dir: get_option('includedir') / meson.project_name(),
)
fp_enums_h = fp_enums[1]
fpi_enums = gnome.mkenums_simple('fpi-enums',