| 318 | } |
| 319 | |
| 320 | void cmGeneratorTarget::GetSourceFilesWithoutObjectLibraries( |
| 321 | std::vector<cmSourceFile*>& files, std::string const& config) const |
| 322 | { |
| 323 | std::vector<BT<cmSourceFile*>> tmp = |
| 324 | this->GetSourceFilesWithoutObjectLibraries(config); |
| 325 | files.reserve(tmp.size()); |
| 326 | for (BT<cmSourceFile*>& v : tmp) { |
| 327 | files.push_back(v.Value); |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | std::vector<BT<cmSourceFile*>> |
| 332 | cmGeneratorTarget::GetSourceFilesWithoutObjectLibraries( |
no test coverage detected