| 253 | } |
| 254 | |
| 255 | void cmGeneratorTarget::GetCompileOptions(std::vector<std::string>& result, |
| 256 | std::string const& config, |
| 257 | std::string const& language) const |
| 258 | { |
| 259 | std::vector<BT<std::string>> tmp = this->GetCompileOptions(config, language); |
| 260 | result.reserve(tmp.size()); |
| 261 | for (BT<std::string>& v : tmp) { |
| 262 | result.emplace_back(std::move(v.Value)); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | std::vector<BT<std::string>> cmGeneratorTarget::GetCompileOptions( |
| 267 | std::string const& config, std::string const& language) const |
no test coverage detected