Provide a wrapper for regex.h to work around the false-positive compilation errors that crop up in some versions of gcc. Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Daniel Scally <dan.scally@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
42 lines
822 B
Meson
42 lines
822 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',
|
|
'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',
|
|
'regex.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)
|