summaryrefslogtreecommitdiffstats
path: root/src/pcrextend/meson.build
blob: 05c5350806857a9b339b711aba05880b332642cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# SPDX-License-Identifier: LGPL-2.1-or-later

executables += [
        libexec_template + {
                'name' : 'systemd-pcrextend',
                'conditions' : [
                        'HAVE_BLKID',
                        'ENABLE_BOOTLOADER',
                        'HAVE_OPENSSL',
                        'HAVE_TPM2',
                ],
                'sources' : files('pcrextend.c'),
                'dependencies' : [
                        libblkid,
                        libopenssl,
                        tpm2,
                ],
        },
]