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

Method IsExportedTargetsFile

Source/cmGlobalGenerator.cxx:405–413  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

403}
404
405bool cmGlobalGenerator::IsExportedTargetsFile(
406 std::string const& filename) const
407{
408 auto const it = this->BuildExportSets.find(filename);
409 if (it == this->BuildExportSets.end()) {
410 return false;
411 }
412 return !cm::contains(this->BuildExportExportSets, filename);
413}
414
415// Find the make program for the generator, required for try compiles
416bool cmGlobalGenerator::FindMakeProgram(cmMakefile* mf)

Callers 2

HandleFilesModeFunction · 0.80
cmIncludeCommandFunction · 0.80

Calls 2

findMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected