| 1392 | } |
| 1393 | |
| 1394 | void cmLocalGenerator::GetStaticLibraryFlags(std::string& flags, |
| 1395 | std::string const& config, |
| 1396 | std::string const& linkLanguage, |
| 1397 | cmGeneratorTarget* target) |
| 1398 | { |
| 1399 | std::vector<BT<std::string>> tmpFlags = |
| 1400 | this->GetStaticLibraryFlags(config, linkLanguage, target); |
| 1401 | this->AppendFlags(flags, tmpFlags); |
| 1402 | } |
| 1403 | |
| 1404 | std::vector<BT<std::string>> cmLocalGenerator::GetStaticLibraryFlags( |
| 1405 | std::string const& config, std::string const& linkLanguage, |
no test coverage detected