forked from adamlaska/systemd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.build
More file actions
32 lines (26 loc) · 804 Bytes
/
meson.build
File metadata and controls
32 lines (26 loc) · 804 Bytes
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
# SPDX-License-Identifier: LGPL-2.1-or-later
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',
)
oomctl_sources = files('oomctl.c')
if conf.get('ENABLE_OOMD') == 1
install_data('org.freedesktop.oom1.conf',
install_dir : dbuspolicydir)
install_data('org.freedesktop.oom1.service',
install_dir : dbussystemservicedir)
if install_sysconfdir_samples
install_data('oomd.conf',
install_dir : pkgsysconfdir)
endif
endif
tests += [
[files('test-oomd-util.c',
'oomd-util.c',
'oomd-util.h')],
]