| 535 | } |
| 536 | |
| 537 | std::vector<std::string> |
| 538 | cmFastbuildNormalTargetGenerator::GetManifestsAsFastbuildPath() const |
| 539 | { |
| 540 | std::vector<cmSourceFile const*> manifest_srcs; |
| 541 | this->GeneratorTarget->GetManifests(manifest_srcs, Config); |
| 542 | std::vector<std::string> manifests; |
| 543 | manifests.reserve(manifest_srcs.size()); |
| 544 | for (auto& manifest_src : manifest_srcs) { |
| 545 | std::string str = this->ConvertToFastbuildPath( |
| 546 | cmSystemTools::ConvertToOutputPath(manifest_src->GetFullPath())); |
| 547 | LogMessage("Manifest: " + str); |
| 548 | manifests.emplace_back(std::move(str)); |
| 549 | } |
| 550 | |
| 551 | return manifests; |
| 552 | } |
| 553 | |
| 554 | void cmFastbuildNormalTargetGenerator::GenerateModuleDefinitionInfo( |
| 555 | FastbuildTarget& target) const |
no test coverage detected