summaryrefslogtreecommitdiff
path: root/src/cryptsetup/cryptsetup-tokens/meson.build
blob: 61c879c768a8ca2cecb192633c5aa258ee834313 (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
# SPDX-License-Identifier: LGPL-2.1-or-later

if conf.get('HAVE_LIBCRYPTSETUP_PLUGINS') == 1

cryptsetup_token_c_args = ['-fvisibility=hidden']

cryptsetup_token_sym = files('cryptsetup-token.sym')
cryptsetup_token_sym_path = join_paths(meson.current_source_dir(), 'cryptsetup-token.sym')

if conf.get('HAVE_TPM2') == 1
        cryptsetup_token_systemd_tpm2_sources = files('''
                cryptsetup-token-systemd-tpm2.c
                cryptsetup-token.h
                cryptsetup-token-util.h
                cryptsetup-token-util.c
                luks2-tpm2.c
                luks2-tpm2.h
        '''.split())

        cryptsetup_token_systemd_tpm2_static = static_library(
                'cryptsetup-token-systemd-tpm2_static',
                cryptsetup_token_systemd_tpm2_sources,
                include_directories : includes,
                dependencies : libshared_deps + [libcryptsetup],
                c_args : cryptsetup_token_c_args)
endif

endif