| 1417 | } |
| 1418 | |
| 1419 | void cmMakefile::AddInstallGenerator(std::unique_ptr<cmInstallGenerator> g) |
| 1420 | { |
| 1421 | if (g) { |
| 1422 | this->InstallGenerators.push_back(std::move(g)); |
| 1423 | } |
| 1424 | } |
| 1425 | |
| 1426 | void cmMakefile::AddTestGenerator(std::unique_ptr<cmTestGenerator> g) |
| 1427 | { |
no test coverage detected