From 9e1b04770a1876f52394737eaa5edeea048a749b Mon Sep 17 00:00:00 2001 From: Ali Chraghi Date: Sun, 28 Aug 2022 22:10:30 +0430 Subject: [PATCH] gpu-dawn:build: remove `dawn-from-source` option and build from source by default --- libs/gpu-dawn/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gpu-dawn/build.zig b/libs/gpu-dawn/build.zig index d8c6ea21..bc70e4e2 100644 --- a/libs/gpu-dawn/build.zig +++ b/libs/gpu-dawn/build.zig @@ -15,7 +15,7 @@ pub fn build(b: *Builder) void { const options = gpu_dawn.Options{ .install_libs = true, - .from_source = b.option(bool, "dawn-from-source", "Build Dawn from source") orelse false, + .from_source = true, }; // Just to demonstrate/test linking. This is not a functional example, see the mach/gpu examples