| 30 | cmSourceGroup::~cmSourceGroup() = default; |
| 31 | |
| 32 | void cmSourceGroup::SetGroupRegex(char const* regex) |
| 33 | { |
| 34 | if (regex) { |
| 35 | this->GroupRegex.compile(regex); |
| 36 | } else { |
| 37 | this->GroupRegex.compile("^$"); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | void cmSourceGroup::ResolveGenex(cmLocalGenerator* lg, |
| 42 | std::string const& config) |
no test coverage detected