audio: rename to 'sysaudio'

This commit is contained in:
alichraghi 2022-07-13 12:16:28 +04:30 committed by Stephen Gutekanst
parent 0fb712d19e
commit f8f4dcf55f
22 changed files with 3 additions and 3 deletions

4
.gitmodules vendored
View file

@ -28,6 +28,6 @@
[submodule "glfw/upstream"] [submodule "glfw/upstream"]
path = glfw/upstream path = glfw/upstream
url = https://github.com/hexops/glfw url = https://github.com/hexops/glfw
[submodule "audio/upstream"] [submodule "sysaudio/upstream"]
path = audio/upstream path = sysaudio/upstream
url = https://github.com/hexops/soundio url = https://github.com/hexops/soundio

View file

@ -4,7 +4,7 @@ const Builder = std.build.Builder;
const soundio_path = thisDir() ++ "/upstream/soundio"; const soundio_path = thisDir() ++ "/upstream/soundio";
pub const pkg = std.build.Pkg{ pub const pkg = std.build.Pkg{
.name = "audio", .name = "sysaudio",
.source = .{ .path = thisDir() ++ "/src/main.zig" }, .source = .{ .path = thisDir() ++ "/src/main.zig" },
}; };