diff options
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,7 +8,8 @@ pub fn build(b: *std.build.Builder) void { exe.setTarget(target); exe.setBuildMode(mode); exe.install(); - exe.linkSystemLibrary("sdl2"); + exe.linkSystemLibrary("SDL2"); + exe.linkSystemLibrary("c"); const run_cmd = exe.run(); run_cmd.step.dependOn(b.getInstallStep()); |