Переглянути джерело

added build info for cpucorectl

added build info for the new cpucorectl utility to meson
Henrik Holst 1 рік тому
батько
коміт
ba1c593d0e
1 змінених файлів з 15 додано та 0 видалено
  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,
+)