Imported Upstream version 2.8.12.2
[platform/upstream/cmake.git] / Source / cmLocalXCodeGenerator.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cmLocalXCodeGenerator_h
13 #define cmLocalXCodeGenerator_h
14
15 #include "cmLocalGenerator.h"
16
17 /** \class cmLocalXCodeGenerator
18  * \brief Write a local Xcode project
19  *
20  * cmLocalXCodeGenerator produces a LocalUnix makefile from its
21  * member Makefile.
22  */
23 class cmLocalXCodeGenerator : public cmLocalGenerator
24 {
25 public:
26   ///! Set cache only and recurse to false by default.
27   cmLocalXCodeGenerator();
28
29   virtual ~cmLocalXCodeGenerator();
30   virtual std::string GetTargetDirectory(cmTarget const& target) const;
31   virtual void AppendFlagEscape(std::string& flags, const char* rawFlag);
32 private:
33
34 };
35
36 #endif
37