expose VcpkgRoot so that build script can call exe.addVcpkgPath

This commit is contained in:
jackji 2022-12-13 20:15:41 +08:00 committed by Andrew Kelley
parent 6378644d4e
commit f1b536c44c

View File

@ -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,