From b0f0ec7568797913aee9d8bb050cc1e4e52cb577 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 12 Feb 2022 17:10:29 -0700 Subject: [PATCH] gpu-dawn: correct default back to separate_libs=false Fixes regression in e3f055cf7ab3169e7815269279b296f93c7ad686 Signed-off-by: Stephen Gutekanst --- gpu-dawn/build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu-dawn/build.zig b/gpu-dawn/build.zig index 97d9e140..fc119c20 100644 --- a/gpu-dawn/build.zig +++ b/gpu-dawn/build.zig @@ -77,7 +77,7 @@ pub const Options = struct { /// Whether or not to produce separate static libraries for each component of Dawn (reduces /// iteration times when building from source / testing changes to Dawn source code.) - separate_libs: bool = true, + separate_libs: bool = false, /// Whether to build Dawn from source or not. from_source: bool = false,