# 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, 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, install_dir: path_libexecdir, )