From 2780fb401429f3823480a1b6b5693e3abb7e8ba4 Mon Sep 17 00:00:00 2001 From: jaina heartles Date: Sat, 25 Oct 2025 03:13:57 -0400 Subject: [PATCH] Install compiled SDL library --- build.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig b/build.zig index 573b250..d6a9785 100644 --- a/build.zig +++ b/build.zig @@ -87,6 +87,7 @@ pub fn build(b: *std.Build) !void { const sdl_dep_lib = sdl_dep.artifact("SDL3"); if (sdl_system_include_path) |val| sdl_dep_lib.addSystemIncludePath(val); + b.installArtifact(sdl_dep_lib); // SDL options. const options = b.addOptions();