From ba1c593d0ebef9ba0b0f7d01ed62bb9ec0e40ab8 Mon Sep 17 00:00:00 2001 From: Henrik Holst Date: Wed, 3 May 2023 07:44:14 +0200 Subject: [PATCH] added build info for cpucorectl added build info for the new cpucorectl utility to meson --- util/meson.build | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/util/meson.build b/util/meson.build index 4714557..c0c5ab9 100644 --- a/util/meson.build +++ b/util/meson.build @@ -28,3 +28,18 @@ gpuclockctl = executable( install: true, install_dir: path_libexecdir, ) + +# Small target util to park and unpark cores +cpucorectl_sources = [ + 'cpucorectl.c', +] + +cpucorectl = executable( + 'cpucorectl', + sources: cpucorectl_sources, + dependencies: [ + link_daemon_common, + ], + install: true, + install_dir: path_libexecdir, +)