| 1817 | } |
| 1818 | |
| 1819 | void cmLocalGenerator::GetTargetDefines(cmGeneratorTarget const* target, |
| 1820 | std::string const& config, |
| 1821 | std::string const& lang, |
| 1822 | std::set<std::string>& defines) const |
| 1823 | { |
| 1824 | std::set<BT<std::string>> tmp = this->GetTargetDefines(target, config, lang); |
| 1825 | for (BT<std::string> const& v : tmp) { |
| 1826 | defines.emplace(v.Value); |
| 1827 | } |
| 1828 | } |
| 1829 | |
| 1830 | std::set<BT<std::string>> cmLocalGenerator::GetTargetDefines( |
| 1831 | cmGeneratorTarget const* target, std::string const& config, |
no test coverage detected