userspace: Add audioctl utility to configure audio server

This commit is contained in:
2026-01-06 21:56:30 +02:00
parent b7c40eeb57
commit a5318448f5
3 changed files with 176 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
set(SOURCES
main.cpp
)
add_executable(audioctl ${SOURCES})
banan_link_library(audioctl ban)
banan_link_library(audioctl libc)
banan_link_library(audioctl libaudio)
install(TARGETS audioctl OPTIONAL)