authorgravatar for jichengde@gmail.comjackji <jichengde@gmail.com> 2022-12-13 20:15:41+08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-12-13 19:19:27-05:00
logf1b536c44c2854b33a1541624711e006748469a3
tree87a92319eada49f3b8c1a2d772cca5bc3860fd71
parent6378644d4ea561a79edf44056609681e6d1438d1

expose VcpkgRoot so that build script can call exe.addVcpkgPath


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/build.zig+2-2
...@@ -1469,13 +1469,13 @@ pub const Step = struct {...@@ -1469,13 +1469,13 @@ pub const Step = struct {
1469 }1469 }
1470};1470};
14711471
1472const VcpkgRoot = union(VcpkgRootStatus) {1472pub const VcpkgRoot = union(VcpkgRootStatus) {
1473 unattempted: void,1473 unattempted: void,
1474 not_found: void,1474 not_found: void,
1475 found: []const u8,1475 found: []const u8,
1476};1476};
14771477
1478const VcpkgRootStatus = enum {1478pub const VcpkgRootStatus = enum {
1479 unattempted,1479 unattempted,
1480 not_found,1480 not_found,
1481 found,1481 found,