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

Method GetSourceFiles

Source/cmGeneratorTarget_Sources.cxx:298–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296}
297
298void cmGeneratorTarget::GetSourceFiles(std::vector<cmSourceFile*>& files,
299 std::string const& config) const
300{
301 std::vector<BT<cmSourceFile*>> tmp = this->GetSourceFiles(config);
302 files.reserve(tmp.size());
303 for (BT<cmSourceFile*>& v : tmp) {
304 files.push_back(v.Value);
305 }
306}
307
308std::vector<BT<cmSourceFile*>> cmGeneratorTarget::GetSourceFiles(
309 std::string const& config) const

Callers 15

GetLanguagesMethod · 0.95
HaveFortranSourcesMethod · 0.95
CheckCxxModuleStatusMethod · 0.95
WriteGroupsMethod · 0.80
CreateLinksForTargetsMethod · 0.80
WriteSummaryMethod · 0.80
processTreeFunction · 0.80
GenerateMethod · 0.80
AppendTargetMethod · 0.80
AddISPCDependenciesMethod · 0.80
AddPchDependenciesMethod · 0.80

Calls 3

reserveMethod · 0.80
push_backMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected