| 2182 | } |
| 2183 | |
| 2184 | cmSourceGroup* cmMakefile::GetOrCreateSourceGroup( |
| 2185 | std::vector<std::string> const& folders) |
| 2186 | { |
| 2187 | cmSourceGroup* sg = this->GetSourceGroup(folders); |
| 2188 | if (!sg) { |
| 2189 | this->AddSourceGroup(folders); |
| 2190 | sg = this->GetSourceGroup(folders); |
| 2191 | } |
| 2192 | return sg; |
| 2193 | } |
| 2194 | |
| 2195 | cmSourceGroup* cmMakefile::GetOrCreateSourceGroup(std::string const& name) |
| 2196 | { |
no test coverage detected