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

executables += [
        libexec_template + {
                'name' : 'systemd-pstore',
                'conditions' : ['ENABLE_PSTORE'],
                'sources' : files('pstore.c'),
                'dependencies' : [
                        libacl,
                        liblz4,
                        libxz,
                        libzstd,
                        threads,
                ],
        },
]

if conf.get('ENABLE_PSTORE') == 1 and install_sysconfdir_samples
        install_data('pstore.conf',
                     install_dir : pkgconfigfiledir)
endif