| 5536 | } |
| 5537 | |
| 5538 | bool 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 | |
| 5548 | bool cmGeneratorTarget::GetUseShortObjectNames( |
| 5549 | cmStateEnums::IntermediateDirKind kind) const |
no test coverage detected