mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-24 00:55:07 +03:00
meson: Shared Object version handling
The libcamera project is not yet ready to declare ABI nor API stability, but it will benefit the community to be able to provide more regular release cycles to determine 'versioned' points of history. Ideally, these releases will be made at any ABI breakage, but can be made at arbitary time based points along the way. To support releases which may not be ABI stable, declare the soversion of both the libcamera and libcamera-base library to be dependant upon both the major minor and patch component of the project version. As part of this, introduce a new 'Versions' summary section to highlight the different version components that may become apparent within any given build. Bumping versions may leave dangling libcamera.so.* symlinks in build directories. This will confuse Doxygen which will print during its directory scanning phase a warning that the symlink can't be read. As we don't need Doxygen to follow symlinks, disable it with EXCLUDE_SYMLINKS. Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
cfe30ec54f
commit
0aac297afd
4 changed files with 36 additions and 0 deletions
|
@ -51,6 +51,7 @@ libcamera_base_args = [ '-DLIBCAMERA_BASE_PRIVATE' ]
|
|||
libcamera_base_lib = shared_library('libcamera-base',
|
||||
[libcamera_base_sources, libcamera_base_headers],
|
||||
version : libcamera_version,
|
||||
soversion : libcamera_soversion,
|
||||
name_prefix : '',
|
||||
install : true,
|
||||
cpp_args : libcamera_base_args,
|
||||
|
|
|
@ -161,6 +161,7 @@ libcamera_deps = [
|
|||
libcamera = shared_library('libcamera',
|
||||
libcamera_sources,
|
||||
version : libcamera_version,
|
||||
soversion : libcamera_soversion,
|
||||
name_prefix : '',
|
||||
install : true,
|
||||
include_directories : includes,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue