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