Skip to content

Commit 2943b82

Browse files
committed
build.zig Fix SDL3 prebuilt lib path (windows)
1 parent 1a340e4 commit 2943b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ pub const prebuilt = struct {
175175
compile_step.addLibraryPath(sdl2_prebuilt.path("lib"));
176176
}
177177
if (b.lazyDependency("sdl3-prebuilt-x86_64-windows-gnu", .{})) |sdl3_prebuilt| {
178-
compile_step.addLibraryPath(sdl3_prebuilt.path("lib"));
178+
compile_step.addLibraryPath(sdl3_prebuilt.path("bin"));
179179
}
180180
}
181181
},

0 commit comments

Comments
 (0)