mirror of
https://github.com/FeralInteractive/gamemode.git
synced 2025-06-26 17:31:45 +02:00
Restructure files and libraries
Rename a bunch of files to make the consistent Create two new subdirectories for common code, and utilities
This commit is contained in:
32
util/meson.build
Normal file
32
util/meson.build
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
# 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,
|
||||
)
|
Reference in New Issue
Block a user