glfw: remove system_sdk dependency; add xcode-frameworks

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2023-07-03 21:18:53 -07:00
parent d673560f1e
commit 2a99c85060
6 changed files with 266 additions and 236 deletions

View file

@ -26,7 +26,7 @@ pub fn build(b: *Build) !void {
.optimize = optimize,
});
try gpu_dawn.link(b, example, options);
try glfw.link(b, example, .{ .system_sdk = .{ .set_sysroot = false } });
try glfw.link(b, example, .{});
example.addModule("glfw", glfw.module(b));
b.installArtifact(example);
}