sysaudio: add soundio_pkg as dependency of sysaudio.pkg

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-08-27 12:24:00 -07:00 committed by Stephen Gutekanst
parent 3e69c54e79
commit 09ec61b5cd

View file

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