Function checkContainsPath [src]

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

Prototype

pub fn checkContainsPath( 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 checkContainsPath( check_object: *CheckObject, phrase: []const u8, lazy_path: std.Build.LazyPath, ) void { check_object.checkContainsInner(phrase, lazy_path); }