meson: Add missing dependency on fp-enum.h for private library
The private library needs to indirectly include fp-enum.h. This dependency was not listed anyway, resulting in a race condition during the build process.
This commit is contained in:
parent
7e2db8e988
commit
dc3b5e52ac
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ libnbis = static_library('nbis',
|
||||||
install: false)
|
install: false)
|
||||||
|
|
||||||
libfprint_private = static_library('fprint-private',
|
libfprint_private = static_library('fprint-private',
|
||||||
sources: libfprint_private_sources + fpi_enums,
|
sources: libfprint_private_sources + fpi_enums + [ fp_enums_h ],
|
||||||
dependencies: deps,
|
dependencies: deps,
|
||||||
link_with: libnbis,
|
link_with: libnbis,
|
||||||
install: false)
|
install: false)
|
||||||
|
|
Loading…
Reference in a new issue