diff options
-rw-r--r-- | build.zig | 1 | ||||
-rw-r--r-- | src/sdl.zig | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -9,6 +9,7 @@ pub fn build(b: *std.build.Builder) void { exe.setBuildMode(mode); exe.install(); exe.linkSystemLibrary("SDL2"); + exe.linkSystemLibrary("c"); const run_cmd = exe.run(); run_cmd.step.dependOn(b.getInstallStep()); diff --git a/src/sdl.zig b/src/sdl.zig index f8925a1..6066c03 100644 --- a/src/sdl.zig +++ b/src/sdl.zig @@ -1,5 +1,7 @@ const std = @import("std"); -const sdl = @cImport(@cInclude("SDL2/SDL.h")); +const sdl = @cImport({ + @cInclude("SDL.h"); +}); const Point = @import("main.zig").Point; pub const instance = struct { |