diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-05-15 18:55:19 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-05-18 12:56:20 +0300 |
commit | aa7e7175c7c7407ef0d6400055dfec5086b31f3b (patch) | |
tree | 7ea7cd6149eaceba64ede5d86447093dcc8a238c /Documentation | |
parent | f934fd1cb9371dc49e32aee061284a2dadd8ea89 (diff) |
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 <laurent.pinchart@ideasonboard.com>
Acked-by: Jacopo Mondi <jacopo@jmondi.org>
Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
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, |