| 2128 | } |
| 2129 | |
| 2130 | void cmMakefile::AddSourceGroup(std::string const& name, char const* regex) |
| 2131 | { |
| 2132 | std::vector<std::string> nameVector; |
| 2133 | nameVector.push_back(name); |
| 2134 | this->AddSourceGroup(nameVector, regex); |
| 2135 | } |
| 2136 | |
| 2137 | void cmMakefile::AddSourceGroup(std::vector<std::string> const& name, |
| 2138 | char const* regex) |
no test coverage detected