summaryrefslogtreecommitdiffstats
path: root/src/pstore/meson.build
blob: 27c2855fb8a2dc7e9aa185891df076914b913aa6 (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_cflags,
                        libxz_cflags,
                        libzstd_cflags,
                        threads,
                ],
        },
]

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