| 5453 | } |
| 5454 | |
| 5455 | std::vector<std::string> cmGeneratorTarget::GetPackageReferences() const |
| 5456 | { |
| 5457 | cmList packageReferences; |
| 5458 | |
| 5459 | if (this->IsInBuildSystem()) { |
| 5460 | if (cmValue vsPackageReferences = |
| 5461 | this->GetProperty("VS_PACKAGE_REFERENCES")) { |
| 5462 | packageReferences.assign(*vsPackageReferences); |
| 5463 | } |
| 5464 | } |
| 5465 | |
| 5466 | return std::move(packageReferences.data()); |
| 5467 | } |
| 5468 | |
| 5469 | std::string cmGeneratorTarget::GetPDBDirectory(std::string const& config) const |
| 5470 | { |
no test coverage detected