diff --git a/code/nel/tools/pipeline/service/pipeline_process_impl_toollog.cpp b/code/nel/tools/pipeline/service/pipeline_process_impl_toollog.cpp index 018745985..30c8b2f58 100644 --- a/code/nel/tools/pipeline/service/pipeline_process_impl_toollog.cpp +++ b/code/nel/tools/pipeline/service/pipeline_process_impl_toollog.cpp @@ -230,6 +230,10 @@ void CPipelineProcessImpl::parseToolLog(const std::string &dependLogFile, const dependency.CRC32 = statusIt->second.CRC32; metaDependIt->second.Dependencies.push_back(dependency); } + if (writeOutputMeta) + { + // TODO ## OUTPUT META ## + } break; case DIRECTORY: metaDependIt->second.DirectoryDependencies.push_back(inputFileMacro); @@ -268,6 +272,12 @@ void CPipelineProcessImpl::parseToolLog(const std::string &dependLogFile, const const CFileDepend &depend = it->second; CMetadataStorage::writeDepend(depend, CMetadataStorage::getDependPath(it->first)); } + + // Write output meta files + if (writeOutputMeta) + { + // TODO ## OUTPUT META ## + } } NLMISC::CFile::deleteFile(dependLogFile);