Imported Upstream version 2.8.10.2
[platform/upstream/cmake.git] / Source / cmGlobalVisualStudio10IA64Generator.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 cmGlobalVisualStudio10IA64Generator_h
13 #define cmGlobalVisualStudio10IA64Generator_h
14
15 #include "cmGlobalVisualStudio10Generator.h"
16
17 class cmGlobalVisualStudio10IA64Generator :
18   public cmGlobalVisualStudio10Generator
19 {
20 public:
21   cmGlobalVisualStudio10IA64Generator();
22   static cmGlobalGenerator* New() {
23     return new cmGlobalVisualStudio10IA64Generator; }
24
25   ///! Get the name for the generator.
26   virtual const char* GetName() const {
27     return cmGlobalVisualStudio10IA64Generator::GetActualName();}
28   static const char* GetActualName() {return "Visual Studio 10 IA64";}
29
30   virtual const char* GetPlatformName() const {return "Itanium";}
31
32   /** Get the documentation entry for this generator.  */
33   virtual void GetDocumentation(cmDocumentationEntry& entry) const;
34
35   virtual void AddPlatformDefinitions(cmMakefile* mf);
36
37   virtual void EnableLanguage(std::vector<std::string>const& languages,
38                               cmMakefile *, bool optional);
39 };
40 #endif