| 272 | } |
| 273 | |
| 274 | void DebugLibraryFound(std::string const& name, std::string const& path) |
| 275 | { |
| 276 | if (this->DebugState) { |
| 277 | auto regexName = |
| 278 | cmStrCat(this->PrefixRegexStr, name, this->SuffixRegexStr); |
| 279 | this->DebugState->FoundAt(path, regexName); |
| 280 | } |
| 281 | } |
| 282 | }; |
| 283 | |
| 284 | namespace { |
no test coverage detected