Files
external_libcamera/include/libcamera/meson.build
Laurent Pinchart 1a57bcb8d1 libcamera: Add event notification infrastructure
Add three new classes, EventDispatcher, EventNotifier and Timer, that
define APIs for file descriptor event notification and timers. The
implementation of the EventDispatcher is meant to be provided to
libcamera by the application.

The event dispatcher is integrated twith the camera manager to implement
automatic registration of timers and events.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
2019-01-08 16:23:16 +02:00

13 lines
237 B
Meson

libcamera_api = files([
'camera.h',
'camera_manager.h',
'event_dispatcher.h',
'event_notifier.h',
'libcamera.h',
'signal.h',
'timer.h',
])
install_headers(libcamera_api,
subdir : 'libcamera')