Browse Source

Update meson.build

added build info for the new helper to modify /proc/sys values
Henrik Holst 1 year ago
parent
commit
4700089325
1 changed files with 15 additions and 0 deletions
  1. 15 0
      util/meson.build

+ 15 - 0
util/meson.build

@@ -43,3 +43,18 @@ cpucorectl = executable(
     install: true,
     install_dir: path_libexecdir,
 )
+
+# Small target util to set values in /proc/sys/
+procsysctl_sources = [
+    'procsysctl.c',
+]
+
+procsysctl = executable(
+    'procsysctl',
+    sources: procsysctl_sources,
+    dependencies: [
+        link_daemon_common,
+    ],
+    install: true,
+    install_dir: path_libexecdir,
+)