| 4422 | } |
| 4423 | |
| 4424 | std::string cmGeneratorTarget::GetFrameworkVersion() const |
| 4425 | { |
| 4426 | assert(this->GetType() != cmStateEnums::INTERFACE_LIBRARY); |
| 4427 | |
| 4428 | if (cmValue fversion = this->GetProperty("FRAMEWORK_VERSION")) { |
| 4429 | return *fversion; |
| 4430 | } |
| 4431 | if (cmValue tversion = this->GetProperty("VERSION")) { |
| 4432 | return *tversion; |
| 4433 | } |
| 4434 | return "A"; |
| 4435 | } |
| 4436 | |
| 4437 | std::string cmGeneratorTarget::ComputeVersionedName(std::string const& prefix, |
| 4438 | std::string const& base, |
no test coverage detected