Skip to content

Commit f1b536c

Browse files
Jack-Jiandrewrk
authored andcommitted
expose VcpkgRoot so that build script can call exe.addVcpkgPath
1 parent 6378644 commit f1b536c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/std/build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1469,13 +1469,13 @@ pub const Step = struct {
14691469
}
14701470
};
14711471

1472-
const VcpkgRoot = union(VcpkgRootStatus) {
1472+
pub const VcpkgRoot = union(VcpkgRootStatus) {
14731473
unattempted: void,
14741474
not_found: void,
14751475
found: []const u8,
14761476
};
14771477

1478-
const VcpkgRootStatus = enum {
1478+
pub const VcpkgRootStatus = enum {
14791479
unattempted,
14801480
not_found,
14811481
found,

0 commit comments

Comments
 (0)