summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-10-03 19:12:25 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-10-03 19:12:25 (GMT)
commitf851821cc7b97d793f716766cceaa2b7f3a2eef4 (patch)
tree772bf9713da7a8865ad10810a1b4fb01277129fe
parent22a7977ff96bf63ea6707c9bbc2fe591704d29fb (diff)
downloadCMake-f851821cc7b97d793f716766cceaa2b7f3a2eef4.zip
CMake-f851821cc7b97d793f716766cceaa2b7f3a2eef4.tar.gz
CMake-f851821cc7b97d793f716766cceaa2b7f3a2eef4.tar.bz2
BUG: fix for bug#3714 execlude_from_all not working on vs
-rw-r--r--Source/cmGlobalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 8c81f08..e7beb41 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -984,7 +984,7 @@ bool cmGlobalGenerator::IsExcluded(cmLocalGenerator* root,
}
cur = cur->GetParent();
}
- return false;
+ return gen->GetExcludeAll();
}