| 4694 | } |
| 4695 | |
| 4696 | std::string cmLocalGenerator::GetShortObjectFileName( |
| 4697 | cmSourceFile const& source) const |
| 4698 | { |
| 4699 | std::string objectName = this->GetRelativeSourceFileName(source); |
| 4700 | cmCryptoHash objNameHasher(cmCryptoHash::AlgoSHA3_512); |
| 4701 | std::string terseObjectName = |
| 4702 | objNameHasher.HashString(objectName).substr(0, 8); |
| 4703 | return terseObjectName; |
| 4704 | } |
| 4705 | |
| 4706 | std::string cmLocalGenerator::ComputeShortTargetDirectory( |
| 4707 | cmGeneratorTarget const* target) const |
no test coverage detected