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

Method IsNormal

Source/cmTarget.cxx:2789–2802  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2787}
2788
2789bool cmTarget::IsNormal() const
2790{
2791 switch (this->impl->TargetVisibility) {
2792 case Visibility::Normal:
2793 return true;
2794 case Visibility::Generated:
2795 case Visibility::Imported:
2796 case Visibility::ImportedGlobally:
2797 case Visibility::Foreign:
2798 return false;
2799 }
2800 assert(false && "unknown visibility (IsNormal)");
2801 return false;
2802}
2803
2804bool cmTarget::IsSynthetic() const
2805{

Callers 8

cmTargetMethod · 0.95
CopyPolicyStatusesMethod · 0.95
ComputeKindedSourcesMethod · 0.45
ComputeFlagsForObjectMethod · 0.45
GetCompileTemplateVarMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected