diff options
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index a9c5b53..ace3d6f 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -3299,6 +3299,9 @@ cmTargetLinkInterface* cmTarget::ComputeLinkInterface(const char* config) cmComputeLinkInformation* cmTarget::GetLinkInformation(const char* config) { + // Link information does not make sense for static libraries. + assert(this->GetType() != cmTarget::STATIC_LIBRARY); + // Lookup any existing information for this configuration. std::map<cmStdString, cmComputeLinkInformation*>::iterator i = this->LinkInformation.find(config?config:""); |