| 978 | } |
| 979 | |
| 980 | void cmMakefile::AddGeneratorAction(GeneratorAction&& action) |
| 981 | { |
| 982 | assert(!this->GeneratorActionsInvoked); |
| 983 | this->GeneratorActions.emplace_back(std::move(action), this->Backtrace); |
| 984 | } |
| 985 | |
| 986 | void cmMakefile::GeneratorAction::operator()(cmLocalGenerator& lg, |
| 987 | cmListFileBacktrace const& lfbt, |
no test coverage detected