blob: 6fc6c138a5fdf410b7009d74699ab3d3853aaf65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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',
'file.h',
'log.h',
'message.h',
'object.h',
'semaphore.h',
'signal.h',
'thread.h',
'timer.h',
'utils.h',
])
install_headers(libcamera_base_headers,
subdir: libcamera_base_include_dir)
|