Update meson.build

added build info for the new helper to modify /proc/sys values
This commit is contained in:
Henrik Holst 2023-12-04 19:55:51 +01:00 committed by afayaz-feral
parent c7a4572d73
commit 4700089325

View File

@ -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,
)