Function checkNotPresentLazyPath [src]
Like checkExtract() but takes an additional argument LazyPath which will be
resolved to a full search query in make().
Prototype
pub fn checkNotPresentLazyPath(check_object: *CheckObject, phrase: []const u8, lazy_path: std.Build.LazyPath) void
Parameters
check_object: *CheckObject
phrase: []const u8
lazy_path: std.Build.LazyPath
Source
pub fn checkNotPresentLazyPath(check_object: *CheckObject, phrase: []const u8, lazy_path: std.Build.LazyPath) void {
check_object.checkNotPresentInner(phrase, lazy_path);
}