mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 19:00:54 -06:00
cmLocalGenerator: Clarify name of method to write unity source include lines
This commit is contained in:
@@ -2819,15 +2819,17 @@ std::string cmLocalGenerator::WriteUnitySource(
|
||||
file << "/* generated by CMake */\n\n";
|
||||
for (cmSourceFile* sf : sources) {
|
||||
RegisterUnitySources(target, sf, filename);
|
||||
IncludeFileInUnitySources(file, sf->ResolveFullPath(), beforeInclude,
|
||||
afterInclude, uniqueIdName);
|
||||
WriteUnitySourceInclude(file, sf->ResolveFullPath(), beforeInclude,
|
||||
afterInclude, uniqueIdName);
|
||||
}
|
||||
return filename;
|
||||
}
|
||||
|
||||
void cmLocalGenerator::IncludeFileInUnitySources(
|
||||
cmGeneratedFileStream& unity_file, std::string const& sf_full_path,
|
||||
cmValue beforeInclude, cmValue afterInclude, cmValue uniqueIdName) const
|
||||
void cmLocalGenerator::WriteUnitySourceInclude(std::ostream& unity_file,
|
||||
std::string const& sf_full_path,
|
||||
cmValue beforeInclude,
|
||||
cmValue afterInclude,
|
||||
cmValue uniqueIdName) const
|
||||
{
|
||||
if (cmNonempty(uniqueIdName)) {
|
||||
std::string pathToHash;
|
||||
|
||||
@@ -28,7 +28,6 @@ class cmComputeLinkInformation;
|
||||
class cmCustomCommand;
|
||||
class cmCustomCommandGenerator;
|
||||
class cmCustomCommandLines;
|
||||
class cmGeneratedFileStream;
|
||||
class cmGeneratorTarget;
|
||||
class cmGlobalGenerator;
|
||||
class cmImplicitDependsList;
|
||||
@@ -665,10 +664,10 @@ private:
|
||||
cmGeneratorTarget* target,
|
||||
cmRange<std::vector<cmSourceFile*>::const_iterator> sources,
|
||||
cmValue beforeInclude, cmValue afterInclude, std::string filename) const;
|
||||
void IncludeFileInUnitySources(cmGeneratedFileStream& unity_file,
|
||||
std::string const& sf_full_path,
|
||||
cmValue beforeInclude, cmValue afterInclude,
|
||||
cmValue uniqueIdName) const;
|
||||
void WriteUnitySourceInclude(std::ostream& unity_file,
|
||||
std::string const& sf_full_path,
|
||||
cmValue beforeInclude, cmValue afterInclude,
|
||||
cmValue uniqueIdName) const;
|
||||
std::vector<std::string> AddUnityFilesModeAuto(
|
||||
cmGeneratorTarget* target, std::string const& lang,
|
||||
std::vector<cmSourceFile*> const& filtered_sources, cmValue beforeInclude,
|
||||
|
||||
Reference in New Issue
Block a user