Files
external_libcamera/include/libcamera/base/meson.build
Laurent Pinchart a7a589df15 libcamera: base: Add MemFd helper class
libcamera creates memfds in two locations already, duplicating some
code. Move the code to a new MemFd helper class.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Milan Zamazal <mzamazal@redhat.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Tested-by: Milan Zamazal <mzamazal@redhat.com>
Tested-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
2024-08-01 01:20:10 +03:00

42 lines
825 B
Meson

# SPDX-License-Identifier: CC0-1.0
libcamera_base_include_dir = libcamera_include_dir / 'base'
libcamera_base_public_headers = files([
'bound_method.h',
'class.h',
'compiler.h',
'flags.h',
'object.h',
'shared_fd.h',
'signal.h',
'span.h',
'unique_fd.h',
])
libcamera_base_private_headers = files([
'backtrace.h',
'event_dispatcher.h',
'event_dispatcher_poll.h',
'event_notifier.h',
'file.h',
'log.h',
'memfd.h',
'message.h',
'mutex.h',
'private.h',
'semaphore.h',
'thread.h',
'thread_annotations.h',
'timer.h',
'utils.h',
])
libcamera_base_headers = [
libcamera_base_public_headers,
libcamera_base_private_headers,
]
install_headers(libcamera_base_public_headers,
subdir : libcamera_base_include_dir)