summaryrefslogtreecommitdiff
path: root/src/fundamental/meson.build
blob: 40b9ab8e2cd3d02e904090fb846e1c0289aaac42 (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(
        'efi-loader-features.h',
        'macro-fundamental.h',
        'string-util-fundamental.h',
        'type.h')

sources = '''
        string-util-fundamental.c
'''.split()

# for sd-boot
fundamental_source_paths = []
foreach s : sources
        fundamental_source_paths += join_paths(meson.current_source_dir(), s)
endforeach

# for libbasic
fundamental_sources = files(sources) + fundamental_headers