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