| 378 | } |
| 379 | |
| 380 | void cmLocalNinjaGenerator::WriteProcessedMakefile(std::ostream& os) |
| 381 | { |
| 382 | cmGlobalNinjaGenerator::WriteDivider(os); |
| 383 | os << "# Write statements declared in CMakeLists.txt:\n" |
| 384 | "# " |
| 385 | << this->Makefile->GetSafeDefinition("CMAKE_CURRENT_LIST_FILE") << '\n'; |
| 386 | if (this->IsRootMakefile()) { |
| 387 | os << "# Which is the root file.\n"; |
| 388 | } |
| 389 | cmGlobalNinjaGenerator::WriteDivider(os); |
| 390 | os << '\n'; |
| 391 | } |
| 392 | |
| 393 | void cmLocalNinjaGenerator::AppendTargetOutputs(cmGeneratorTarget* target, |
| 394 | cmNinjaDeps& outputs, |
no test coverage detected