[Cmake-commits] CMake branch, next, updated. v2.8.12.1-6499-gdc6237c
Stephen Kelly
steveire at gmail.com
Tue Dec 31 06:58:47 EST 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via dc6237c8a87d97596de8486b45f5dca48216d951 (commit)
via 8ea425e2918cc81584accab6a3d027fa1b9674a2 (commit)
from 5b06f27472aca1300cb6356248b4a52718d8de24 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=dc6237c8a87d97596de8486b45f5dca48216d951
commit dc6237c8a87d97596de8486b45f5dca48216d951
Merge: 5b06f27 8ea425e
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Dec 31 06:58:34 2013 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Dec 31 06:58:34 2013 -0500
Merge topic 'minor-cleanups' into next
8ea425e Fix mac behavior.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8ea425e2918cc81584accab6a3d027fa1b9674a2
commit 8ea425e2918cc81584accab6a3d027fa1b9674a2
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Dec 31 12:57:55 2013 +0100
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Tue Dec 31 12:57:55 2013 +0100
Fix mac behavior.
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index b5a46d0..381c1f5 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -488,7 +488,8 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root,
dir.c_str());
}
- if(!target.GetPropertyAsBool("EXCLUDE_FROM_ALL"))
+ if(target.GetType() != cmTarget::INTERFACE_LIBRARY
+ && !target.GetPropertyAsBool("EXCLUDE_FROM_ALL"))
{
allbuild->AddUtility(target.GetName());
}
-----------------------------------------------------------------------
Summary of changes:
Source/cmGlobalXCodeGenerator.cxx | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list