Introduce "generator expressions" to add_test()
[cmake.git] / Source / cmGlobalVisualStudio8Win64Generator.h
blob643b730fb521210e2af19b39a9b162689332f8db
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmGlobalVisualStudio8Win64Generator.h,v $
5 Language: C++
6 Date: $Date: 2007-06-28 13:09:26 $
7 Version: $Revision: 1.3 $
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 cmGlobalVisualStudio8Win64Generator_h
18 #define cmGlobalVisualStudio8Win64Generator_h
20 #include "cmGlobalVisualStudio8Generator.h"
23 /** \class cmGlobalVisualStudio8Win64Generator
24 * \brief Write a Unix makefiles.
26 * cmGlobalVisualStudio8Win64Generator manages UNIX build process for a tree
28 class cmGlobalVisualStudio8Win64Generator :
29 public cmGlobalVisualStudio8Generator
31 public:
32 cmGlobalVisualStudio8Win64Generator();
33 static cmGlobalGenerator* New() {
34 return new cmGlobalVisualStudio8Win64Generator; }
36 ///! Get the name for the generator.
37 virtual const char* GetName() const {
38 return cmGlobalVisualStudio8Win64Generator::GetActualName();}
39 static const char* GetActualName() {return "Visual Studio 8 2005 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();
47 /**
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);
54 #endif