| 1639 | } |
| 1640 | |
| 1641 | void cmLocalGenerator::GetTargetCompileFlags(cmGeneratorTarget* target, |
| 1642 | std::string const& config, |
| 1643 | std::string const& lang, |
| 1644 | std::string& flags, |
| 1645 | std::string const& arch) |
| 1646 | { |
| 1647 | std::vector<BT<std::string>> tmpFlags = |
| 1648 | this->GetTargetCompileFlags(target, config, lang, arch); |
| 1649 | this->AppendFlags(flags, tmpFlags); |
| 1650 | } |
| 1651 | |
| 1652 | std::vector<BT<std::string>> cmLocalGenerator::GetTargetCompileFlags( |
| 1653 | cmGeneratorTarget* target, std::string const& config, |
no test coverage detected