summaryrefslogtreecommitdiff
path: root/include/libcamera/base/meson.build
blob: 4410aba8181a2ff3fb6c1296eefde6c58496e934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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)