summaryrefslogtreecommitdiff
path: root/src/fundamental/meson.build
blob: 2ec4a28433d477d65854f2242c9cfc59f24c08f8 (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: LGPL-2.1-or-later

fundamental_path = meson.current_source_dir()

fundamental_headers = files(
        'bootspec-fundamental.h',
        'efivars-fundamental.h',
        'macro-fundamental.h',
        'sha256.h',
        'string-util-fundamental.h',
)

# for sd-boot
fundamental_source_paths = files(
        'bootspec-fundamental.c',
        'efivars-fundamental.c',
        'sha256.c',
        'string-util-fundamental.c',
)

# for libbasic
fundamental_sources = fundamental_source_paths + fundamental_headers