MCPcopy Create free account
hub / github.com/Kitware/CMake / GetSourceFilesWithoutObjectLibraries

Method GetSourceFilesWithoutObjectLibraries

Source/cmGeneratorTarget_Sources.cxx:320–329  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

318}
319
320void 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
331std::vector<BT<cmSourceFile*>>
332cmGeneratorTarget::GetSourceFilesWithoutObjectLibraries(

Callers 1

Calls 5

reserveMethod · 0.80
push_backMethod · 0.80
GetObjectLibraryMethod · 0.80
sizeMethod · 0.45
emptyMethod · 0.45

Tested by

no test coverage detected