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

Method GetIsGenerated

Source/cmSourceFile.cxx:479–490  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477}
478
479bool cmSourceFile::GetIsGenerated(CheckScope checkScope) const
480{
481 if (this->IsGenerated) {
482 // Globally marked as generated!
483 return true;
484 }
485 if (checkScope == CheckScope::GlobalAndLocal) {
486 // Check locally stored properties.
487 return this->GetPropertyAsBool(propGENERATED);
488 }
489 return false;
490}
491
492void cmSourceFile::SetProperties(cmPropertyMap properties)
493{

Callers 14

FindFullPathMethod · 0.95
GetPropertyForUserMethod · 0.95
CreateUtilityTargetMethod · 0.80
processTreeFunction · 0.80
cmQTWrapUICommandFunction · 0.80
GenerateFilesStringMethod · 0.80
InitScanFilesMethod · 0.80
handleSkipPchMethod · 0.80
cmQTWrapCPPCommandFunction · 0.80
CreateNewProjectFileMethod · 0.80
WriteCustomRuleMethod · 0.80

Calls 1

GetPropertyAsBoolMethod · 0.95

Tested by

no test coverage detected