1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmGlobalXCode21Generator.h,v $
6 Date: $Date: 2006-05-11 15:47:03 $
7 Version: $Revision: 1.4 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmGlobalXCode21Generator_h
18 #define cmGlobalXCode21Generator_h
20 #include "cmGlobalXCodeGenerator.h"
22 /** \class cmGlobalXCode21Generator
23 * \brief Write Mac XCode projects
25 * cmGlobalXCode21Generator manages UNIX build process for a tree
27 class cmGlobalXCode21Generator
: public cmGlobalXCodeGenerator
30 cmGlobalXCode21Generator();
31 static cmGlobalGenerator
* New() { return new cmGlobalXCode21Generator
; }
32 virtual void WriteXCodePBXProj(std::ostream
& fout
,
33 cmLocalGenerator
* root
,
34 std::vector
<cmLocalGenerator
*>& generators
);
36 ///! What is the configurations directory variable called?
37 virtual const char* GetCMakeCFGInitDirectory() {
38 return "$(CONFIGURATION)"; }