mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-06 23:57:22 +02:00

Specify the include directory in the link_daemon_common dependency and thus everything that includes that as a dependency will get the proper include directory automatically.
31 lines
568 B
Meson
31 lines
568 B
Meson
|
|
# 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,
|
|
)
|