mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 07:19:45 +03:00
libcamera: add dependency on libudev
The device enumeration will depend on libudev, add the dependency to the build system. This should be turned into a optional dependency once a device enumerator not using udev is supported. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
8c10082a9e
commit
723a6356c8
1 changed files with 4 additions and 1 deletions
|
@ -16,7 +16,10 @@ includes = [
|
||||||
libcamera_internal_includes,
|
libcamera_internal_includes,
|
||||||
]
|
]
|
||||||
|
|
||||||
|
libudev = dependency('libudev')
|
||||||
|
|
||||||
libcamera = shared_library('camera',
|
libcamera = shared_library('camera',
|
||||||
libcamera_sources,
|
libcamera_sources,
|
||||||
install : true,
|
install : true,
|
||||||
include_directories : includes)
|
include_directories : includes,
|
||||||
|
dependencies : libudev)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue