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,
|
||||
]
|
||||
|
||||
libudev = dependency('libudev')
|
||||
|
||||
libcamera = shared_library('camera',
|
||||
libcamera_sources,
|
||||
install : true,
|
||||
include_directories : includes)
|
||||
include_directories : includes,
|
||||
dependencies : libudev)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue