From f1b536c44c2854b33a1541624711e006748469a3 Mon Sep 17 00:00:00 2001 From: jackji Date: Tue, 13 Dec 2022 20:15:41 +0800 Subject: [PATCH] expose VcpkgRoot so that build script can call exe.addVcpkgPath --- lib/std/build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/std/build.zig b/lib/std/build.zig index 78da4ada80..4d2b5de1f1 100644 --- a/lib/std/build.zig +++ b/lib/std/build.zig @@ -1469,13 +1469,13 @@ pub const Step = struct { } }; -const VcpkgRoot = union(VcpkgRootStatus) { +pub const VcpkgRoot = union(VcpkgRootStatus) { unattempted: void, not_found: void, found: []const u8, }; -const VcpkgRootStatus = enum { +pub const VcpkgRootStatus = enum { unattempted, not_found, found,