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:
parent
f3f768e738
commit
bfc75de778
1 changed files with 3 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue