Function checkExactPath [src]

Like checkExact() but takes an additional argument LazyPath which will be resolved to a full search query in make().

Prototype

pub fn checkExactPath(check_object: *CheckObject, phrase: []const u8, lazy_path: std.Build.LazyPath) void

Parameters

check_object: *CheckObjectphrase: []const u8lazy_path: std.Build.LazyPath

Source

pub fn checkExactPath(check_object: *CheckObject, phrase: []const u8, lazy_path: std.Build.LazyPath) void { check_object.checkExactInner(phrase, lazy_path); }