Sfoglia il codice sorgente

added build info for cpucorectl

added build info for the new cpucorectl utility to meson
Henrik Holst 1 anno fa
parent
commit
ba1c593d0e
1 ha cambiato i file con 15 aggiunte e 0 eliminazioni
  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,
+)