| 997 | } |
| 998 | |
| 999 | void cmLocalGenerator::AddCompileOptions(std::string& flags, |
| 1000 | cmGeneratorTarget* target, |
| 1001 | std::string const& lang, |
| 1002 | std::string const& config) |
| 1003 | { |
| 1004 | std::vector<BT<std::string>> tmpFlags; |
| 1005 | this->AddCompileOptions(tmpFlags, target, lang, config); |
| 1006 | this->AppendFlags(flags, tmpFlags); |
| 1007 | } |
| 1008 | |
| 1009 | void cmLocalGenerator::AddCompileOptions(std::vector<BT<std::string>>& flags, |
| 1010 | cmGeneratorTarget* target, |
no test coverage detected