From 8b3c4bf087543c27ff9c11e850f63b374ece4f76 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sat, 8 Jul 2023 13:37:46 -0700 Subject: [PATCH] gpu-dawn: zig fmt Signed-off-by: Stephen Gutekanst --- libs/gpu-dawn/build.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/gpu-dawn/build.zig b/libs/gpu-dawn/build.zig index 7d70ba59..822f7a19 100644 --- a/libs/gpu-dawn/build.zig +++ b/libs/gpu-dawn/build.zig @@ -4,6 +4,7 @@ const Build = std.Build; pub fn build(b: *Build) !void { const optimize = b.standardOptimizeOption(.{}); const target = b.standardTargetOptions(.{}); + const options = Options{ .install_libs = true, .from_source = true, @@ -63,7 +64,7 @@ pub const Options = struct { install_libs: bool = false, /// The binary release version to use from https://github.com/hexops/mach-gpu-dawn/releases - binary_version: []const u8 = "release-ac4e82f", + binary_version: []const u8 = "release-ac4e82f", /// Detects the default options to use for the given target. pub fn detectDefaults(self: Options, target: std.Target) Options {