2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-12-22 21:42:36 +00:00
|
|
|
|
2009-09-28 15:43:28 +00:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-12-22 21:42:36 +00:00
|
|
|
|
2009-09-28 15:43:28 +00: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.
|
|
|
|
============================================================================*/
|
2005-12-22 21:42:36 +00:00
|
|
|
#include "cmGlobalMinGWMakefileGenerator.h"
|
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
|
|
|
cmGlobalMinGWMakefileGenerator::cmGlobalMinGWMakefileGenerator()
|
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->FindMakeProgramFile = "CMakeMinGWFindMake.cmake";
|
|
|
|
this->ForceUnixPaths = true;
|
2006-04-27 01:31:39 +00:00
|
|
|
this->ToolSupportsColor = true;
|
2006-06-15 20:17:11 +00:00
|
|
|
this->UseLinkScript = true;
|
2005-12-22 21:42:36 +00:00
|
|
|
}
|
|
|
|
|
2006-05-11 14:40:28 +00:00
|
|
|
void cmGlobalMinGWMakefileGenerator
|
2012-08-13 17:42:58 +00:00
|
|
|
::EnableLanguage(std::vector<std::string>const& l,
|
|
|
|
cmMakefile *mf,
|
2007-06-28 13:09:26 +00:00
|
|
|
bool optional)
|
2012-08-13 17:42:58 +00:00
|
|
|
{
|
2013-03-09 10:16:39 +00:00
|
|
|
this->EnableMinGWLanguage(mf);
|
2007-06-28 13:09:26 +00:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2005-12-22 21:42:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalMinGWMakefileGenerator::CreateLocalGenerator()
|
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3* lg = new cmLocalUnixMakefileGenerator3;
|
|
|
|
lg->SetWindowsShell(true);
|
|
|
|
lg->SetGlobalGenerator(this);
|
|
|
|
lg->SetIgnoreLibPrefix(true);
|
|
|
|
lg->SetPassMakeflags(false);
|
|
|
|
lg->SetUnixCD(true);
|
2007-05-17 14:53:18 +00:00
|
|
|
lg->SetMinGWMake(true);
|
2005-12-22 21:42:36 +00:00
|
|
|
return lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-11 14:40:28 +00:00
|
|
|
void cmGlobalMinGWMakefileGenerator
|
2012-11-19 15:42:24 +00:00
|
|
|
::GetDocumentation(cmDocumentationEntry& entry)
|
2005-12-22 21:42:36 +00:00
|
|
|
{
|
2012-11-19 15:42:24 +00:00
|
|
|
entry.Name = cmGlobalMinGWMakefileGenerator::GetActualName();
|
2007-10-22 16:49:09 +00:00
|
|
|
entry.Brief = "Generates a make file for use with mingw32-make.";
|
2005-12-22 21:42:36 +00:00
|
|
|
}
|