glfw: use lowercase shell32 for Linux

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-04 16:10:51 -07:00
parent 9ac5b603a2
commit d35957766b

View file

@ -112,7 +112,7 @@ fn linkGLFWDependencies(b: *Builder, step: *std.build.LibExeObjStep, options: Op
.windows => {
step.linkSystemLibrary("gdi32");
step.linkSystemLibrary("user32");
step.linkSystemLibrary("Shell32");
step.linkSystemLibrary("shell32");
if (options.opengl) {
step.linkSystemLibrary("opengl32");
}