2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-03-30 22:49:56 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-03-30 22:49:56 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-03-30 22:49:56 +04:00
|
|
|
#ifndef cmGlobalVisualStudio8Win64Generator_h
|
|
|
|
#define cmGlobalVisualStudio8Win64Generator_h
|
|
|
|
|
|
|
|
#include "cmGlobalVisualStudio8Generator.h"
|
|
|
|
|
|
|
|
|
|
|
|
/** \class cmGlobalVisualStudio8Win64Generator
|
|
|
|
* \brief Write a Unix makefiles.
|
|
|
|
*
|
|
|
|
* cmGlobalVisualStudio8Win64Generator manages UNIX build process for a tree
|
|
|
|
*/
|
2012-08-13 21:42:58 +04:00
|
|
|
class cmGlobalVisualStudio8Win64Generator :
|
2006-05-11 19:47:03 +04:00
|
|
|
public cmGlobalVisualStudio8Generator
|
2006-03-30 22:49:56 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalVisualStudio8Win64Generator();
|
2012-08-13 21:42:58 +04:00
|
|
|
static cmGlobalGenerator* New() {
|
2006-05-11 19:47:03 +04:00
|
|
|
return new cmGlobalVisualStudio8Win64Generator; }
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2006-03-30 22:49:56 +04:00
|
|
|
///! Get the name for the generator.
|
|
|
|
virtual const char* GetName() const {
|
|
|
|
return cmGlobalVisualStudio8Win64Generator::GetActualName();}
|
|
|
|
static const char* GetActualName() {return "Visual Studio 8 2005 Win64";}
|
|
|
|
|
2010-08-16 23:49:14 +04:00
|
|
|
virtual const char* GetPlatformName() const {return "x64";}
|
|
|
|
|
2006-03-30 22:49:56 +04:00
|
|
|
/** Get the documentation entry for this generator. */
|
|
|
|
virtual void GetDocumentation(cmDocumentationEntry& entry) const;
|
|
|
|
|
|
|
|
///! create the correct local generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to determine system infomation such as shared library
|
2012-08-13 21:42:58 +04:00
|
|
|
* extension, pthreads, byte order etc.
|
2006-03-30 22:49:56 +04:00
|
|
|
*/
|
2009-11-20 19:55:28 +03:00
|
|
|
virtual void AddPlatformDefinitions(cmMakefile *);
|
2006-03-30 22:49:56 +04:00
|
|
|
};
|
|
|
|
#endif
|