Files
external_libcamera/include/libcamera/base/meson.build
Kieran Bingham b71e8c2f39 libcamera/base: Move span to base library
Move span, and adjust the Doxygen exclusion as well.

Reviewed-by: Paul Elder <paul.elder@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2021-06-25 16:11:11 +01:00

25 lines
499 B
Meson

# SPDX-License-Identifier: CC0-1.0
libcamera_base_include_dir = libcamera_include_dir / 'base'
libcamera_base_headers = files([
'bound_method.h',
'class.h',
'event_dispatcher.h',
'event_dispatcher_poll.h',
'event_notifier.h',
'file.h',
'log.h',
'message.h',
'object.h',
'semaphore.h',
'signal.h',
'span.h',
'thread.h',
'timer.h',
'utils.h',
])
install_headers(libcamera_base_headers,
subdir: libcamera_base_include_dir)