added build info for cpucorectl

added build info for the new cpucorectl utility to meson
This commit is contained in:
Henrik Holst 2023-05-03 07:44:14 +02:00 committed by afayaz-feral
parent 7d00c1f0a4
commit ba1c593d0e

View File

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