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"
|
2016-04-29 13:40:20 +00:00
|
|
|
|
2005-12-22 21:42:36 +00:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
2015-05-24 09:31:14 +00:00
|
|
|
cmGlobalMinGWMakefileGenerator::cmGlobalMinGWMakefileGenerator(cmake* cm)
|
|
|
|
: cmGlobalUnixMakefileGenerator3(cm)
|
2005-12-22 21:42:36 +00:00
|
|
|
{
|
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;
|
2015-05-24 09:46:30 +00:00
|
|
|
cm->GetState()->SetWindowsShell(true);
|
|
|
|
cm->GetState()->SetMinGWMake(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
|
|
|
{
|
2015-05-07 15:43:02 +00:00
|
|
|
this->FindMakeProgram(mf);
|
|
|
|
std::string makeProgram = mf->GetRequiredDefinition("CMAKE_MAKE_PROGRAM");
|
|
|
|
std::vector<std::string> locations;
|
|
|
|
locations.push_back(cmSystemTools::GetProgramPath(makeProgram));
|
|
|
|
locations.push_back("/mingw/bin");
|
|
|
|
locations.push_back("c:/mingw/bin");
|
|
|
|
std::string tgcc = cmSystemTools::FindProgram("gcc", locations);
|
|
|
|
std::string gcc = "gcc.exe";
|
|
|
|
if(!tgcc.empty())
|
|
|
|
{
|
|
|
|
gcc = tgcc;
|
|
|
|
}
|
|
|
|
std::string tgxx = cmSystemTools::FindProgram("g++", locations);
|
|
|
|
std::string gxx = "g++.exe";
|
|
|
|
if(!tgxx.empty())
|
|
|
|
{
|
|
|
|
gxx = tgxx;
|
|
|
|
}
|
|
|
|
std::string trc = cmSystemTools::FindProgram("windres", locations);
|
|
|
|
std::string rc = "windres.exe";
|
|
|
|
if(!trc.empty())
|
|
|
|
{
|
|
|
|
rc = trc;
|
|
|
|
}
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CC", gcc.c_str());
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CXX", gxx.c_str());
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_RC", rc.c_str());
|
2007-06-28 13:09:26 +00:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2005-12-22 21:42:36 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|