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

executables += [
        executable_template + {
                'name' : 'systemd-sysext',
                'public' : true,
                'conditions' : ['ENABLE_SYSEXT'],
                'sources' : files('sysext.c'),
        },
]

if conf.get('ENABLE_SYSEXT') == 1
        meson.add_install_script(meson_make_symlink,
                                 bindir / 'systemd-sysext',
                                 bindir / 'systemd-confext')
endif