meson.build 568 B

123456789101112131415161718192021222324252627282930
  1. # Small target util to get and set cpu governors
  2. cpugovctl_sources = [
  3. 'cpugovctl.c',
  4. ]
  5. cpugovctl = executable(
  6. 'cpugovctl',
  7. sources: cpugovctl_sources,
  8. dependencies: [
  9. link_daemon_common,
  10. ],
  11. install: true,
  12. install_dir: path_libexecdir,
  13. )
  14. # Small target util to get and set gpu clocks values
  15. gpuclockctl_sources = [
  16. 'gpuclockctl.c',
  17. ]
  18. gpuclockctl = executable(
  19. 'gpuclockctl',
  20. sources: gpuclockctl_sources,
  21. dependencies: [
  22. link_daemon_common,
  23. ],
  24. install: true,
  25. install_dir: path_libexecdir,
  26. )