diff options
author | Daniel Scally <dan.scally@ideasonboard.com> | 2024-07-31 14:51:58 +0100 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-08-07 17:57:08 +0300 |
commit | 88e5bf8279c418a943f80982fb0fc21a2c2997e2 (patch) | |
tree | 7bea80b0037e3c336ad35e0f5d571e3cf81e526f /Documentation/meson.build | |
parent | ff26e21339d5ae50bdb8f7bf814c6c46b19e8bf5 (diff) |
libcamera: Split public and internal source arrays
Meson array variables hold lists of libcamera's source files. To help
facilitate the splitting of Doxygen generated documentation into
distinct public and internal versions, split those arrays to separate
public and internal variables.
Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com>
Co-developed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'Documentation/meson.build')
-rw-r--r-- | Documentation/meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/meson.build b/Documentation/meson.build index 30d39523..07042071 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -31,12 +31,14 @@ if doxygen.found() and dot.found() doxygen_input = [ doxyfile, libcamera_base_headers, - libcamera_base_sources, + libcamera_base_public_sources, + libcamera_base_internal_sources, libcamera_internal_headers, libcamera_ipa_headers, libcamera_ipa_interfaces, libcamera_public_headers, - libcamera_sources, + libcamera_public_sources, + libcamera_internal_sources, libipa_headers, libipa_sources, ] |