From f3187ad9f45e075f4c8d429d2b698299e2ebc79e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Mon, 14 Feb 2022 19:35:12 +0100 Subject: [PATCH] tod: Ensure we install tod-macros.h header --- libfprint/tod/meson.build | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libfprint/tod/meson.build b/libfprint/tod/meson.build index ba395c16..10c49e4c 100644 --- a/libfprint/tod/meson.build +++ b/libfprint/tod/meson.build @@ -75,6 +75,10 @@ pkgconfig.generate(libfprint_tod, ] ) +tod_local_headers = [ + 'tod-macros.h', +] + tod_headers = [] extra_libfprint_headers = [ 'drivers_api.h', @@ -95,3 +99,7 @@ custom_target('tod_fpi_enums_headers', install_headers(tod_headers, subdir: tod_subpath ) + +install_headers(tod_local_headers, + subdir: tod_subpath / 'tod', +)