summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2011-09-07 19:37:15 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2011-09-07 19:37:15 (GMT)
commit103ab60dd7314f6a75b02dc65d40a99efedc5391 (patch)
tree7907a3d93ca09843137f401fa0e3e5475aee9671 /Source/cmGlobalXCodeGenerator.cxx
parent18897d63a5370706312b2b1b8b8900a792ab6056 (diff)
parent57bc42ae91ce373db094e69a6f9900aadbe858fe (diff)
downloadCMake-103ab60dd7314f6a75b02dc65d40a99efedc5391.zip
CMake-103ab60dd7314f6a75b02dc65d40a99efedc5391.tar.gz
CMake-103ab60dd7314f6a75b02dc65d40a99efedc5391.tar.bz2
Merge topic 'fix-zero-check-mistake'
57bc42a Xcode: Do not emit the ZERO_CHECK target more than once
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 02a95fe..e3bae76 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -770,7 +770,8 @@ cmGlobalXCodeGenerator::CreateXCodeFileReference(cmSourceFile* sf,
bool cmGlobalXCodeGenerator::SpecialTargetEmitted(std::string const& tname)
{
if(tname == "ALL_BUILD" || tname == "XCODE_DEPEND_HELPER" ||
- tname == "install" || tname == "package" || tname == "RUN_TESTS" )
+ tname == "install" || tname == "package" || tname == "RUN_TESTS" ||
+ tname == CMAKE_CHECK_BUILD_SYSTEM_TARGET )
{
if(this->TargetDoneSet.find(tname) != this->TargetDoneSet.end())
{