| 5598 | } |
| 5599 | |
| 5600 | std::string cmGeneratorTarget::GetCMFSupportDirectory( |
| 5601 | cmStateEnums::IntermediateDirKind kind) const |
| 5602 | { |
| 5603 | cmLocalGenerator* lg = this->GetLocalGenerator(); |
| 5604 | if (!lg->AlwaysUsesCMFPaths()) { |
| 5605 | return cmStrCat(lg->GetCurrentBinaryDirectory(), "/CMakeFiles/", |
| 5606 | lg->GetTargetDirectory(this, kind)); |
| 5607 | } |
| 5608 | return cmStrCat(lg->GetObjectOutputRoot(kind), '/', |
| 5609 | lg->GetTargetDirectory(this, kind)); |
| 5610 | } |
| 5611 | |
| 5612 | bool cmGeneratorTarget::IsLinkable() const |
| 5613 | { |
no test coverage detected