| 3419 | } |
| 3420 | |
| 3421 | void cmake::UpdateProgress(std::string const& msg, float prog) |
| 3422 | { |
| 3423 | if (this->ProgressCallback && !this->GetIsInTryCompile()) { |
| 3424 | this->ProgressCallback(msg, prog); |
| 3425 | } |
| 3426 | } |
| 3427 | |
| 3428 | bool cmake::GetIsInTryCompile() const |
| 3429 | { |
no test coverage detected