| 3117 | } |
| 3118 | |
| 3119 | cmSourceFile* cmMakefile::GetOrCreateGeneratedSource( |
| 3120 | std::string const& sourceName) |
| 3121 | { |
| 3122 | cmSourceFile* sf = |
| 3123 | this->GetOrCreateSource(sourceName, true, cmSourceFileLocationKind::Known); |
| 3124 | sf->MarkAsGenerated(); // In case we did not create the source file. |
| 3125 | return sf; |
| 3126 | } |
| 3127 | |
| 3128 | void cmMakefile::CreateGeneratedOutputs( |
| 3129 | std::vector<std::string> const& outputs) |
no test coverage detected