1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmGlobalVisualStudio9Win64Generator.h,v $
6 Date: $Date: 2007-12-17 19:43:11 $
7 Version: $Revision: 1.1 $
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 cmGlobalVisualStudio9Win64Generator_h
18 #define cmGlobalVisualStudio9Win64Generator_h
20 #include "cmGlobalVisualStudio9Generator.h"
23 /** \class cmGlobalVisualStudio8Win64Generator
24 * \brief Write a Unix makefiles.
26 * cmGlobalVisualStudio8Win64Generator manages UNIX build process for a tree
28 class cmGlobalVisualStudio9Win64Generator
:
29 public cmGlobalVisualStudio9Generator
32 cmGlobalVisualStudio9Win64Generator();
33 static cmGlobalGenerator
* New() {
34 return new cmGlobalVisualStudio9Win64Generator
; }
36 ///! Get the name for the generator.
37 virtual const char* GetName() const {
38 return cmGlobalVisualStudio9Win64Generator::GetActualName();}
39 static const char* GetActualName() {return "Visual Studio 9 2008 Win64";}
41 /** Get the documentation entry for this generator. */
42 virtual void GetDocumentation(cmDocumentationEntry
& entry
) const;
44 ///! create the correct local generator
45 virtual cmLocalGenerator
*CreateLocalGenerator();
48 * Try to determine system infomation such as shared library
49 * extension, pthreads, byte order etc.
51 virtual void EnableLanguage(std::vector
<std::string
>const& languages
,
52 cmMakefile
*, bool optional
);