meson.build 664 B

1234567891011121314151617181920212223242526272829303132
  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. include_directories: include_daemon_common,
  13. install_dir: path_libexecdir,
  14. )
  15. # Small target util to get and set gpu clocks values
  16. gpuclockctl_sources = [
  17. 'gpuclockctl.c',
  18. ]
  19. gpuclockctl = executable(
  20. 'gpuclockctl',
  21. sources: gpuclockctl_sources,
  22. dependencies: [
  23. link_daemon_common,
  24. ],
  25. install: true,
  26. include_directories: include_daemon_common,
  27. install_dir: path_libexecdir,
  28. )