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

Method IsForeign

Source/cmTarget.cxx:2854–2867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2852}
2853
2854bool cmTarget::IsForeign() const
2855{
2856 switch (this->impl->TargetVisibility) {
2857 case Visibility::Foreign:
2858 return true;
2859 case Visibility::Normal:
2860 case Visibility::Generated:
2861 case Visibility::Imported:
2862 case Visibility::ImportedGlobally:
2863 return false;
2864 }
2865 assert(false && "unknown visibility (isForeign)");
2866 return false;
2867}
2868
2869bool cmTarget::IsPerConfig() const
2870{

Callers 3

FindTargetToUseMethod · 0.45
FindTargetImplMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected