mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-24 17:15:07 +03:00
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>
This commit is contained in:
parent
f934fd1cb9
commit
aa7e7175c7
5 changed files with 14 additions and 11 deletions
|
@ -138,7 +138,10 @@ libcamera = shared_library('camera',
|
|||
build_rpath : '/',
|
||||
dependencies : libcamera_deps)
|
||||
|
||||
libcamera_dep = declare_dependency(sources : [libcamera_api, libcamera_ipa_api],
|
||||
libcamera_dep = declare_dependency(sources : [
|
||||
libcamera_ipa_headers,
|
||||
libcamera_public_headers,
|
||||
],
|
||||
include_directories : libcamera_includes,
|
||||
link_with : libcamera)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue