summaryrefslogtreecommitdiffstats
path: root/src/oom/meson.build
blob: 78c92deff3c982ac08e307a248fc1ac7784300a0 (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
26
27
28
29
30
31
32
33
34
# SPDX-License-Identifier: LGPL-2.1+

systemd_oomd_sources = files('''
        oomd-manager-bus.c
        oomd-manager-bus.h
        oomd-manager.c
        oomd-manager.h
        oomd-util.c
        oomd-util.h
        oomd.c
'''.split())

oomctl_sources = files('''
        oomctl.c
'''.split())

if conf.get('ENABLE_OOMD') == 1
        tests += [
                [['src/oom/test-oomd-util.c',
                  'src/oom/oomd-util.c',
                  'src/oom/oomd-util.h'],
                 [],
                 []]
        ]

        install_data('org.freedesktop.oom1.conf',
                     install_dir : dbuspolicydir)

        install_data('org.freedesktop.oom1.service',
                     install_dir : dbussystemservicedir)

        install_data('oomd.conf',
                     install_dir : pkgsysconfdir)
endif