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