Browse Source

added build info for cpucorectl

added build info for the new cpucorectl utility to meson
Henrik Holst 1 year ago
parent
commit
ba1c593d0e
1 changed files with 15 additions and 0 deletions
  1. 15 0
      util/meson.build

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