From aa7e7175c7c7407ef0d6400055dfec5086b31f3b Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Fri, 15 May 2020 18:55:19 +0300 Subject: meson: Rename variables storing headers lists The list of public, IPA and internal header files are stored in three meson variables, named libcamera_api, libcamera_ipa_api and libcamera_headers respectively. The lack of uniformity is a bit confusing. Fix it by renaming those variables to libcamera_public_headers, libcamera_ipa_headers and libcamera_internal_headers. Signed-off-by: Laurent Pinchart Acked-by: Jacopo Mondi Acked-by: Kieran Bingham --- Documentation/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Documentation/meson.build') diff --git a/Documentation/meson.build b/Documentation/meson.build index b3b4f0b6..6d9a397c 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -22,9 +22,9 @@ if doxygen.found() custom_target('doxygen', input : [ doxyfile, - libcamera_api, - libcamera_ipa_api, - libcamera_headers, + libcamera_internal_headers, + libcamera_ipa_headers, + libcamera_public_headers, libcamera_sources, libipa_headers, libipa_sources, -- cgit v1.2.1