1234567891011121314151617181920212223242526272829303132 |
- # Small target util to get and set cpu governors
- cpugovctl_sources = [
- 'cpugovctl.c',
- ]
- cpugovctl = executable(
- 'cpugovctl',
- sources: cpugovctl_sources,
- dependencies: [
- link_daemon_common,
- ],
- install: true,
- include_directories: include_daemon_common,
- install_dir: path_libexecdir,
- )
- # Small target util to get and set gpu clocks values
- gpuclockctl_sources = [
- 'gpuclockctl.c',
- ]
- gpuclockctl = executable(
- 'gpuclockctl',
- sources: gpuclockctl_sources,
- dependencies: [
- link_daemon_common,
- ],
- install: true,
- include_directories: include_daemon_common,
- install_dir: path_libexecdir,
- )
|