Browse Source

BUG: fix for bug#3714 execlude_from_all not working on vs

Bill Hoffman 19 years ago
parent
commit
f851821cc7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmGlobalGenerator.cxx

+ 1 - 1
Source/cmGlobalGenerator.cxx

@@ -984,7 +984,7 @@ bool cmGlobalGenerator::IsExcluded(cmLocalGenerator* root,
       }
     cur = cur->GetParent();
     }
-  return false;
+  return gen->GetExcludeAll();
 }