|
|
@ -230,6 +230,10 @@ void CPipelineProcessImpl::parseToolLog(const std::string &dependLogFile, const
|
|
|
|
dependency.CRC32 = statusIt->second.CRC32;
|
|
|
|
dependency.CRC32 = statusIt->second.CRC32;
|
|
|
|
metaDependIt->second.Dependencies.push_back(dependency);
|
|
|
|
metaDependIt->second.Dependencies.push_back(dependency);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (writeOutputMeta)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// TODO ## OUTPUT META ##
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case DIRECTORY:
|
|
|
|
case DIRECTORY:
|
|
|
|
metaDependIt->second.DirectoryDependencies.push_back(inputFileMacro);
|
|
|
|
metaDependIt->second.DirectoryDependencies.push_back(inputFileMacro);
|
|
|
@ -268,6 +272,12 @@ void CPipelineProcessImpl::parseToolLog(const std::string &dependLogFile, const
|
|
|
|
const CFileDepend &depend = it->second;
|
|
|
|
const CFileDepend &depend = it->second;
|
|
|
|
CMetadataStorage::writeDepend(depend, CMetadataStorage::getDependPath(it->first));
|
|
|
|
CMetadataStorage::writeDepend(depend, CMetadataStorage::getDependPath(it->first));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Write output meta files
|
|
|
|
|
|
|
|
if (writeOutputMeta)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
// TODO ## OUTPUT META ##
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NLMISC::CFile::deleteFile(dependLogFile);
|
|
|
|
NLMISC::CFile::deleteFile(dependLogFile);
|
|
|
|