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
|
|
|
#include "windows.h" // this must be first to define GetCurrentDirectory
|
|
|
|
#include "cmGlobalVisualStudio8Win64Generator.h"
|
|
|
|
#include "cmLocalVisualStudio7Generator.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmGlobalVisualStudio8Win64Generator::cmGlobalVisualStudio8Win64Generator()
|
|
|
|
{
|
|
|
|
this->PlatformName = "x64";
|
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalVisualStudio8Win64Generator::CreateLocalGenerator()
|
|
|
|
{
|
|
|
|
cmLocalVisualStudio7Generator *lg = new cmLocalVisualStudio7Generator;
|
|
|
|
lg->SetVersion8();
|
|
|
|
lg->SetPlatformName(this->PlatformName.c_str());
|
2007-03-12 19:35:11 +03:00
|
|
|
lg->SetExtraFlagTable(this->GetExtraFlagTableVS8());
|
2006-03-30 22:49:56 +04:00
|
|
|
lg->SetGlobalGenerator(this);
|
|
|
|
return lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-11 19:47:03 +04:00
|
|
|
void cmGlobalVisualStudio8Win64Generator
|
|
|
|
::GetDocumentation(cmDocumentationEntry& entry) const
|
2006-03-30 22:49:56 +04:00
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
entry.Name = this->GetName();
|
|
|
|
entry.Brief = "Generates Visual Studio .NET 2005 Win64 project files.";
|
|
|
|
entry.Full = "";
|
2006-03-30 22:49:56 +04:00
|
|
|
}
|
|
|
|
|
2009-11-20 19:55:28 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2006-05-11 19:47:03 +04:00
|
|
|
void cmGlobalVisualStudio8Win64Generator
|
2009-11-20 19:55:28 +03:00
|
|
|
::AddPlatformDefinitions(cmMakefile* mf)
|
2006-03-30 22:49:56 +04:00
|
|
|
{
|
2009-11-20 19:55:28 +03:00
|
|
|
this->cmGlobalVisualStudio8Generator::AddPlatformDefinitions(mf);
|
2006-03-30 22:49:56 +04:00
|
|
|
mf->AddDefinition("CMAKE_FORCE_WIN64", "TRUE");
|
2009-11-20 19:55:28 +03:00
|
|
|
mf->AddDefinition("MSVC_C_ARCHITECTURE_ID", "x64");
|
|
|
|
mf->AddDefinition("MSVC_CXX_ARCHITECTURE_ID", "x64");
|
2006-03-30 22:49:56 +04:00
|
|
|
}
|