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

executables += [
        libexec_template + {
                'name' : 'systemd-veritysetup',
                'conditions' : ['HAVE_LIBCRYPTSETUP'],
                'sources' : files('veritysetup.c'),
                'dependencies' : libcryptsetup,
        },
        generator_template + {
                'name' : 'systemd-veritysetup-generator',
                'conditions' : ['HAVE_LIBCRYPTSETUP'],
                'sources' : files('veritysetup-generator.c'),
        },
]