2005-07-19 23:28:41 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2005-07-20 00:40:44 +04:00
|
|
|
#include "cmGlobalXCode21Generator.h"
|
2005-09-03 00:29:32 +04:00
|
|
|
#include "cmXCode21Object.h"
|
2005-07-20 00:40:44 +04:00
|
|
|
|
2005-07-19 23:28:41 +04:00
|
|
|
cmGlobalXCode21Generator::cmGlobalXCode21Generator()
|
|
|
|
{
|
|
|
|
this->m_XcodeVersion = 21;
|
|
|
|
}
|
|
|
|
|
2005-09-03 00:29:32 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmGlobalXCode21Generator::WriteXCodePBXProj(std::ostream& fout,
|
|
|
|
cmLocalGenerator* ,
|
|
|
|
std::vector<cmLocalGenerator*>& )
|
|
|
|
{
|
|
|
|
fout << "// !$*UTF8*$!\n";
|
|
|
|
fout << "{\n";
|
|
|
|
cmXCode21Object::Indent(1, fout);
|
|
|
|
fout << "archiveVersion = 1;\n";
|
|
|
|
cmXCode21Object::Indent(1, fout);
|
|
|
|
fout << "classes = {\n";
|
|
|
|
cmXCode21Object::Indent(1, fout);
|
|
|
|
fout << "};\n";
|
|
|
|
cmXCode21Object::Indent(1, fout);
|
|
|
|
fout << "objectVersion = 42;\n";
|
|
|
|
cmXCode21Object::PrintList(m_XCodeObjects, fout);
|
|
|
|
cmXCode21Object::Indent(1, fout);
|
|
|
|
fout << "rootObject = " << m_RootObject->GetId() << " /* Project object */;\n";
|
|
|
|
fout << "}\n";
|
|
|
|
}
|