Support setting the X3D V-Cache Mode

This commit is contained in:
cjwilsontech
2025-09-03 20:38:56 -07:00
parent 3c024dd6d9
commit e98e6837bb
9 changed files with 467 additions and 3 deletions

View File

@@ -73,3 +73,18 @@ platprofctl = executable(
install: true,
install_dir: path_libexecdir,
)
# Small target util to get and set AMD X3D cache mode
x3dmodectl_sources = [
'x3dmodectl.c',
]
x3dmodectl = executable(
'x3dmodectl',
sources: x3dmodectl_sources,
dependencies: [
link_daemon_common,
],
install: true,
install_dir: path_libexecdir,
)