| 661 | } |
| 662 | |
| 663 | void cmGeneratorTarget::GetStaticLibraryLinkOptions( |
| 664 | std::vector<std::string>& result, std::string const& config, |
| 665 | std::string const& language) const |
| 666 | { |
| 667 | std::vector<BT<std::string>> tmp = |
| 668 | this->GetStaticLibraryLinkOptions(config, language); |
| 669 | result.reserve(tmp.size()); |
| 670 | for (BT<std::string>& v : tmp) { |
| 671 | result.emplace_back(std::move(v.Value)); |
| 672 | } |
| 673 | } |
| 674 | |
| 675 | std::vector<BT<std::string>> cmGeneratorTarget::GetStaticLibraryLinkOptions( |
| 676 | std::string const& config, std::string const& language) const |
no test coverage detected