diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-10-03 19:12:25 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-10-03 19:12:25 (GMT) |
commit | f851821cc7b97d793f716766cceaa2b7f3a2eef4 (patch) | |
tree | 772bf9713da7a8865ad10810a1b4fb01277129fe /Source/cmGlobalGenerator.cxx | |
parent | 22a7977ff96bf63ea6707c9bbc2fe591704d29fb (diff) | |
download | CMake-f851821cc7b97d793f716766cceaa2b7f3a2eef4.zip CMake-f851821cc7b97d793f716766cceaa2b7f3a2eef4.tar.gz CMake-f851821cc7b97d793f716766cceaa2b7f3a2eef4.tar.bz2 |
BUG: fix for bug#3714 execlude_from_all not working on vs
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 2 |
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(); } |