MCPcopy Index your code
hub / github.com/Kitware/CMake / NeedImportLibraryName

Method NeedImportLibraryName

Source/cmGeneratorTarget.cxx:5538–5546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5536}
5537
5538bool cmGeneratorTarget::NeedImportLibraryName(std::string const& config) const
5539{
5540 return this->HasImportLibrary(config) ||
5541 // On DLL platforms we always generate the import library name
5542 // just in case the sources have export markup.
5543 (this->IsDLLPlatform() &&
5544 (this->GetType() == cmStateEnums::EXECUTABLE ||
5545 this->GetType() == cmStateEnums::MODULE_LIBRARY));
5546}
5547
5548bool cmGeneratorTarget::GetUseShortObjectNames(
5549 cmStateEnums::IntermediateDirKind kind) const

Callers 3

GetFilePrefixInternalMethod · 0.95
GetFileSuffixInternalMethod · 0.95

Calls 3

HasImportLibraryMethod · 0.95
IsDLLPlatformMethod · 0.95
GetTypeMethod · 0.95

Tested by

no test coverage detected