2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-08-31 00:01:48 +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.
|
2002-08-31 00:01:48 +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.
|
|
|
|
============================================================================*/
|
2002-08-31 00:01:48 +04:00
|
|
|
#include "cmGlobalNMakeMakefileGenerator.h"
|
2005-05-12 18:49:56 +04:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
2002-08-31 00:01:48 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
2002-12-05 21:44:11 +03:00
|
|
|
cmGlobalNMakeMakefileGenerator::cmGlobalNMakeMakefileGenerator()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->FindMakeProgramFile = "CMakeNMakeFindMake.cmake";
|
|
|
|
this->ForceUnixPaths = false;
|
2006-04-27 05:31:39 +04:00
|
|
|
this->ToolSupportsColor = true;
|
2006-06-16 00:17:11 +04:00
|
|
|
this->UseLinkScript = false;
|
2002-12-05 21:44:11 +03:00
|
|
|
}
|
|
|
|
|
2006-05-11 18:40:28 +04:00
|
|
|
void cmGlobalNMakeMakefileGenerator
|
2012-08-13 21:42:58 +04:00
|
|
|
::EnableLanguage(std::vector<std::string>const& l,
|
|
|
|
cmMakefile *mf,
|
2007-06-28 17:09:26 +04:00
|
|
|
bool optional)
|
2002-08-31 00:01:48 +04:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
// pick a default
|
2002-11-08 23:46:08 +03:00
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CC", "cl");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CXX", "cl");
|
2012-08-13 21:42:58 +04:00
|
|
|
if(!(cmSystemTools::GetEnv("INCLUDE") &&
|
2009-03-27 18:18:58 +03:00
|
|
|
cmSystemTools::GetEnv("LIB"))
|
2008-10-14 19:42:45 +04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
std::string message = "To use the NMake generator, cmake must be run "
|
|
|
|
"from a shell that can use the compiler cl from the command line. "
|
|
|
|
"This environment does not contain INCLUDE, LIB, or LIBPATH, and "
|
|
|
|
"these must be set for the cl compiler to work. ";
|
|
|
|
mf->IssueMessage(cmake::WARNING,
|
|
|
|
message);
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-06-28 17:09:26 +04:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2002-08-31 00:01:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalNMakeMakefileGenerator::CreateLocalGenerator()
|
|
|
|
{
|
2005-05-12 18:49:56 +04:00
|
|
|
cmLocalUnixMakefileGenerator3* lg = new cmLocalUnixMakefileGenerator3;
|
2005-12-23 00:42:36 +03:00
|
|
|
lg->SetDefineWindowsNULL(true);
|
2002-11-08 23:46:08 +03:00
|
|
|
lg->SetWindowsShell(true);
|
|
|
|
lg->SetMakeSilentFlag("/nologo");
|
2002-09-04 23:24:49 +04:00
|
|
|
lg->SetGlobalGenerator(this);
|
2003-08-01 21:13:43 +04:00
|
|
|
lg->SetIgnoreLibPrefix(true);
|
2003-10-28 19:06:06 +03:00
|
|
|
lg->SetPassMakeflags(true);
|
2008-01-14 00:36:20 +03:00
|
|
|
lg->SetNMake(true);
|
2005-12-23 00:42:36 +03:00
|
|
|
lg->SetUnixCD(false);
|
2002-09-04 23:24:49 +04:00
|
|
|
return lg;
|
2002-08-31 00:01:48 +04:00
|
|
|
}
|
2003-07-08 05:52:10 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-11 18:40:28 +04:00
|
|
|
void cmGlobalNMakeMakefileGenerator
|
|
|
|
::GetDocumentation(cmDocumentationEntry& entry) const
|
2003-07-08 05:52:10 +04:00
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
entry.Name = this->GetName();
|
|
|
|
entry.Brief = "Generates NMake makefiles.";
|
|
|
|
entry.Full = "";
|
2003-07-08 05:52:10 +04:00
|
|
|
}
|