From 886b75272f9c702f28ac2995d91504e56373fd8b Mon Sep 17 00:00:00 2001 From: InKryption Date: Sat, 18 Feb 2023 02:00:12 +0100 Subject: [PATCH] improve option description --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 977b140..376045f 100644 --- a/build.zig +++ b/build.zig @@ -45,7 +45,7 @@ pub fn build(b: *std.Build) void { triangle_exe.linkLibC(); triangle_exe.linkSystemLibrary("glfw"); - const example_registry = b.option([]const u8, "example-registry", "Override the path to the Vulkan registry") orelse "examples/vk.xml"; + const example_registry = b.option([]const u8, "example-registry", "Override the path to the Vulkan registry used for the examples") orelse "examples/vk.xml"; const gen = vkgen.VkGenerateStep.create(b, example_registry); triangle_exe.addModule("vulkan", gen.getModule());