mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
ENH: better progress for any directory that is a project
This commit is contained in:
@@ -917,8 +917,10 @@ unsigned long cmGlobalUnixMakefileGenerator3
|
||||
{
|
||||
unsigned long result = 0;
|
||||
|
||||
// for every target in the top level all
|
||||
if (!lg->GetParent())
|
||||
// if this is a project
|
||||
if (!lg->GetParent() ||
|
||||
strcmp(lg->GetMakefile()->GetProjectName(),
|
||||
lg->GetParent()->GetMakefile()->GetProjectName()))
|
||||
{
|
||||
// use the new project to target map
|
||||
std::set<cmTarget*> &targets =
|
||||
|
||||
Reference in New Issue
Block a user