Skip to content

Commit

Permalink
build.zig Fix SDL3 prebuilt lib path (windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
hazeycode committed Jan 28, 2025
1 parent 1a340e4 commit 2943b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub const prebuilt = struct {
compile_step.addLibraryPath(sdl2_prebuilt.path("lib"));
}
if (b.lazyDependency("sdl3-prebuilt-x86_64-windows-gnu", .{})) |sdl3_prebuilt| {
compile_step.addLibraryPath(sdl3_prebuilt.path("lib"));
compile_step.addLibraryPath(sdl3_prebuilt.path("bin"));
}
}
},
Expand Down

0 comments on commit 2943b82

Please sign in to comment.