glfw: default Linux to GLESv3

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-10-16 18:00:40 -07:00 committed by Stephen Gutekanst
parent 5f423b3149
commit f8eb5599a4

View file

@ -224,8 +224,7 @@ fn linkGLFW(b: *Builder, step: *std.build.LibExeObjStep, options: Options) void
step.linkSystemLibrary("GL");
}
if (options.gles) {
// TODO(slimsag): does anyone want GLESv1/GLESv3 options?
step.linkSystemLibrary("GLESv2");
step.linkSystemLibrary("GLESv3");
}
},
}