diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-03-12 15:32:10 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-03-12 15:32:10 (GMT) |
commit | 55603ea9ebc044d8d811198d924851c2a1cc9ddb (patch) | |
tree | 3c91263211ae3f6b24d332fbcbe9b05154c2078f | |
parent | b99129d2d81a494055d40443e8e044c9db4ca807 (diff) | |
download | CMake-55603ea9ebc044d8d811198d924851c2a1cc9ddb.zip CMake-55603ea9ebc044d8d811198d924851c2a1cc9ddb.tar.gz CMake-55603ea9ebc044d8d811198d924851c2a1cc9ddb.tar.bz2 |
COMP: XCode fix
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 77715fb..0f8494f 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -305,7 +305,7 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root, { target.AddUtility("XCODE_DEPEND_HELPER"); } - if(target.IsInAll()) + if(!target.GetPropertyAsBool("EXCLUDE_FROM_ALL")) { allbuild->AddUtility(target.GetName()); } |