mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
Use cmMakefile::GetOrCreateSourceGroup in cmQtAutogeneratorsInitializer
This commit is contained in:
@@ -237,20 +237,7 @@ static bool AddToSourceGroup(cmMakefile* makefile, const std::string& fileName,
|
||||
}
|
||||
// Generate a source group on demand
|
||||
if (!groupName.empty()) {
|
||||
{
|
||||
const char* delimiter =
|
||||
makefile->GetDefinition("SOURCE_GROUP_DELIMITER");
|
||||
if (delimiter == nullptr) {
|
||||
delimiter = "\\";
|
||||
}
|
||||
std::vector<std::string> folders =
|
||||
cmSystemTools::tokenize(groupName, delimiter);
|
||||
sourceGroup = makefile->GetSourceGroup(folders);
|
||||
if (sourceGroup == nullptr) {
|
||||
makefile->AddSourceGroup(folders);
|
||||
sourceGroup = makefile->GetSourceGroup(folders);
|
||||
}
|
||||
}
|
||||
sourceGroup = makefile->GetOrCreateSourceGroup(groupName);
|
||||
if (sourceGroup == nullptr) {
|
||||
std::ostringstream ost;
|
||||
ost << cmQtAutoGen::GeneratorNameUpper(genType);
|
||||
|
||||
Reference in New Issue
Block a user