Imported Upstream version 2.8.9
[platform/upstream/cmake.git] / Source / cmGlobalVisualStudio9IA64Generator.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 cmGlobalVisualStudio9IA64Generator_h
13 #define cmGlobalVisualStudio9IA64Generator_h
14
15 #include "cmGlobalVisualStudio9Generator.h"
16
17
18 /** \class cmGlobalVisualStudio8IA64Generator
19  * \brief Write a Unix makefiles.
20  *
21  * cmGlobalVisualStudio8IA64Generator manages UNIX build process for a tree
22  */
23 class cmGlobalVisualStudio9IA64Generator :
24   public cmGlobalVisualStudio9Generator
25 {
26 public:
27   cmGlobalVisualStudio9IA64Generator();
28   static cmGlobalGenerator* New() {
29     return new cmGlobalVisualStudio9IA64Generator; }
30
31   ///! Get the name for the generator.
32   virtual const char* GetName() const {
33     return cmGlobalVisualStudio9IA64Generator::GetActualName();}
34   static const char* GetActualName() {return "Visual Studio 9 2008 IA64";}
35
36   virtual const char* GetPlatformName() const {return "Itanium";}
37
38   /** Get the documentation entry for this generator.  */
39   virtual void GetDocumentation(cmDocumentationEntry& entry) const;
40
41   ///! create the correct local generator
42   virtual cmLocalGenerator *CreateLocalGenerator();
43
44   /**
45    * Try to determine system infomation such as shared library
46    * extension, pthreads, byte order etc.
47    */
48   virtual void AddPlatformDefinitions(cmMakefile *);
49 };
50 #endif