| 1820 | } |
| 1821 | |
| 1822 | void cmMakefileTargetGenerator::MakeEchoProgress( |
| 1823 | cmLocalUnixMakefileGenerator3::EchoProgress& progress) const |
| 1824 | { |
| 1825 | progress.Dir = |
| 1826 | cmStrCat(this->LocalGenerator->GetBinaryDirectory(), "/CMakeFiles"); |
| 1827 | std::ostringstream progressArg; |
| 1828 | progressArg << "$(CMAKE_PROGRESS_" << this->NumberOfProgressActions << ")"; |
| 1829 | progress.Arg = progressArg.str(); |
| 1830 | } |
| 1831 | |
| 1832 | void cmMakefileTargetGenerator::WriteObjectsVariable( |
| 1833 | std::string& variableName, std::string& variableNameExternal, |
no test coverage detected