diff options
author | David Cole <david.cole@kitware.com> | 2007-08-14 15:45:15 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2007-08-14 15:45:15 (GMT) |
commit | fa61182de8a6ce967420077417b5253abdba2d56 (patch) | |
tree | cc61c3f8b9d2d03ed8716d1e5590f0ad9e3f5b81 /Source/cmXCode21Object.cxx | |
parent | f13c3eef83af130396d6c933afcbac672afe37a3 (diff) | |
download | CMake-fa61182de8a6ce967420077417b5253abdba2d56.zip CMake-fa61182de8a6ce967420077417b5253abdba2d56.tar.gz CMake-fa61182de8a6ce967420077417b5253abdba2d56.tar.bz2 |
ENH: Improvements to the Xcode generator. Build frameworks using native Copy Headers and Copy Bundle Resources phases. Fix bugs: eliminate folders with no names, ensure source files show up in multiple targets, remove empty utility targets from Sources subtrees, ensure that fileRefs only show up once in each grouping folder.
Diffstat (limited to 'Source/cmXCode21Object.cxx')
-rw-r--r-- | Source/cmXCode21Object.cxx | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/Source/cmXCode21Object.cxx b/Source/cmXCode21Object.cxx index 0a70d78..6ee6936 100644 --- a/Source/cmXCode21Object.cxx +++ b/Source/cmXCode21Object.cxx @@ -1,6 +1,23 @@ +/*========================================================================= + + Program: CMake - Cross-Platform Makefile Generator + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ #include "cmXCode21Object.h" #include "cmSystemTools.h" +//---------------------------------------------------------------------------- cmXCode21Object::cmXCode21Object(PBXType ptype, Type type) :cmXCodeObject(ptype, type) { @@ -24,7 +41,7 @@ void cmXCode21Object::PrintComment(std::ostream& out) out << " */"; } - +//---------------------------------------------------------------------------- void cmXCode21Object::PrintList(std::vector<cmXCodeObject*> const& v, std::ostream& out, PBXType t) { @@ -56,6 +73,7 @@ void cmXCode21Object::PrintList(std::vector<cmXCodeObject*> const& v, out << "/* End " << PBXTypeNames[t] << " section */\n"; } +//---------------------------------------------------------------------------- void cmXCode21Object::PrintList(std::vector<cmXCodeObject*> const& v, std::ostream& out) { |