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

if conf.get('ENABLE_HOSTNAMED') != 1
        subdir_done()
endif

executables += [
        libexec_template + {
                'name' : 'systemd-hostnamed',
                'dbus' : true,
                'sources' : files('hostnamed.c'),
        },
        executable_template + {
                'name' : 'hostnamectl',
                'public' : true,
                'sources' : files('hostnamectl.c'),
        },
]

install_data('org.freedesktop.hostname1.conf',
             install_dir : dbuspolicydir)
install_data('org.freedesktop.hostname1.service',
             install_dir : dbussystemservicedir)
install_data('org.freedesktop.hostname1.policy',
             install_dir : polkitpolicydir)