Commit f1b536c44c

jackji <jichengde@gmail.com>
2022-12-13 13:15:41
expose VcpkgRoot so that build script can call exe.addVcpkgPath
1 parent 6378644
Changed files (1)
lib
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,