summaryrefslogtreecommitdiffstats
path: root/src/oom/meson.build
diff options
context:
space:
mode:
authorAnita Zhang <the.anitazha@gmail.com>2020-09-09 08:46:27 +0200
committerAnita Zhang <the.anitazha@gmail.com>2020-10-08 02:12:24 +0200
commit5c616ecfcde86105e72c11ad0916e4f3e157a382 (patch)
treeff71270f17765ad400f93c8b9eb60cf7357fdf4a /src/oom/meson.build
parentcore: systemd-oomd pid1 integration (diff)
downloadsystemd-5c616ecfcde86105e72c11ad0916e4f3e157a382.tar.xz
systemd-5c616ecfcde86105e72c11ad0916e4f3e157a382.zip
systemd-oomd: dbus hook ups and oomctl CLI
Diffstat (limited to 'src/oom/meson.build')
-rw-r--r--src/oom/meson.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/oom/meson.build b/src/oom/meson.build
index 92c47e04c4..aa85dab947 100644
--- a/src/oom/meson.build
+++ b/src/oom/meson.build
@@ -1,6 +1,8 @@
# 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
@@ -8,6 +10,10 @@ systemd_oomd_sources = files('''
oomd.c
'''.split())
+oomctl_sources = files('''
+ oomctl.c
+'''.split())
+
if conf.get('ENABLE_OOMD') == 1
tests += [
[['src/oom/test-oomd-util.c',
@@ -17,6 +23,9 @@ if conf.get('ENABLE_OOMD') == 1
[]]
]
+ install_data('org.freedesktop.oom1.conf',
+ install_dir : dbuspolicydir)
+
install_data('oomd.conf',
install_dir : pkgsysconfdir)
endif