diff options
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build.zig b/build.zig index 94ee88f..def28a5 100644 --- a/build.zig +++ b/build.zig @@ -25,6 +25,8 @@ pub fn build(b: *std.Build) void { // linking for linux only // TODO: link for mac later exe.linkSystemLibrary("SDL2"); + exe.linkSystemLibrary("mpg123"); + exe.linkSystemLibrary("alsa"); exe.linkLibC(); // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default |