Now that we have a UniqueFD class, the name FileDescriptor is ambiguous. Rename it to SharedFD. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
33 lines
649 B
Meson
33 lines
649 B
Meson
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
libcamera_base_include_dir = libcamera_include_dir / 'base'
|
|
|
|
libcamera_base_headers = files([
|
|
'backtrace.h',
|
|
'bound_method.h',
|
|
'class.h',
|
|
'compiler.h',
|
|
'event_dispatcher.h',
|
|
'event_dispatcher_poll.h',
|
|
'event_notifier.h',
|
|
'file.h',
|
|
'flags.h',
|
|
'log.h',
|
|
'message.h',
|
|
'mutex.h',
|
|
'object.h',
|
|
'private.h',
|
|
'semaphore.h',
|
|
'shared_fd.h',
|
|
'signal.h',
|
|
'span.h',
|
|
'thread.h',
|
|
'thread_annotations.h',
|
|
'timer.h',
|
|
'unique_fd.h',
|
|
'utils.h',
|
|
])
|
|
|
|
install_headers(libcamera_base_headers,
|
|
subdir: libcamera_base_include_dir)
|