| 196 | } |
| 197 | |
| 198 | std::string cmGeneratorExpressionEvaluationFile::GetInputFileName( |
| 199 | cmLocalGenerator const* lg) |
| 200 | { |
| 201 | std::string inputFileName = this->Input; |
| 202 | |
| 203 | if (cmSystemTools::FileIsFullPath(inputFileName)) { |
| 204 | inputFileName = cmSystemTools::CollapseFullPath(inputFileName); |
| 205 | } else { |
| 206 | inputFileName = this->FixRelativePath(inputFileName, PathForInput, lg); |
| 207 | } |
| 208 | |
| 209 | return inputFileName; |
| 210 | } |
| 211 | |
| 212 | std::string cmGeneratorExpressionEvaluationFile::GetOutputFileName( |
| 213 | cm::GenEx::Context const& context, cmGeneratorTarget* target) |
no test coverage detected