2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-12-22 16:42:36 -05:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-12-22 16:42:36 -05:00
|
|
|
|
2009-09-28 11: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.
|
|
|
|
============================================================================*/
|
2005-12-22 16:42:36 -05:00
|
|
|
#include "cmGlobalMinGWMakefileGenerator.h"
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2005-12-22 16:42:36 -05:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
2015-05-24 11:31:14 +02:00
|
|
|
cmGlobalMinGWMakefileGenerator::cmGlobalMinGWMakefileGenerator(cmake* cm)
|
|
|
|
: cmGlobalUnixMakefileGenerator3(cm)
|
2005-12-22 16:42:36 -05:00
|
|
|
{
|
2006-03-15 11:02:08 -05:00
|
|
|
this->FindMakeProgramFile = "CMakeMinGWFindMake.cmake";
|
|
|
|
this->ForceUnixPaths = true;
|
2006-04-26 21:31:39 -04:00
|
|
|
this->ToolSupportsColor = true;
|
2006-06-15 16:17:11 -04:00
|
|
|
this->UseLinkScript = true;
|
2015-05-24 11:46:30 +02:00
|
|
|
cm->GetState()->SetWindowsShell(true);
|
|
|
|
cm->GetState()->SetMinGWMake(true);
|
2005-12-22 16:42:36 -05:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void cmGlobalMinGWMakefileGenerator::EnableLanguage(
|
|
|
|
std::vector<std::string> const& l, cmMakefile* mf, bool optional)
|
2012-08-13 13:42:58 -04:00
|
|
|
{
|
2015-05-07 11:43:02 -04: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";
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!tgcc.empty()) {
|
2015-05-07 11:43:02 -04:00
|
|
|
gcc = tgcc;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2015-05-07 11:43:02 -04:00
|
|
|
std::string tgxx = cmSystemTools::FindProgram("g++", locations);
|
|
|
|
std::string gxx = "g++.exe";
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!tgxx.empty()) {
|
2015-05-07 11:43:02 -04:00
|
|
|
gxx = tgxx;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2015-05-07 11:43:02 -04:00
|
|
|
std::string trc = cmSystemTools::FindProgram("windres", locations);
|
|
|
|
std::string rc = "windres.exe";
|
2016-05-16 10:34:04 -04:00
|
|
|
if (!trc.empty()) {
|
2015-05-07 11:43:02 -04:00
|
|
|
rc = trc;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2015-05-07 11:43:02 -04:00
|
|
|
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 09:09:26 -04:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2005-12-22 16:42:36 -05:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
void cmGlobalMinGWMakefileGenerator::GetDocumentation(
|
|
|
|
cmDocumentationEntry& entry)
|
2005-12-22 16:42:36 -05:00
|
|
|
{
|
2012-11-19 16:42:24 +01:00
|
|
|
entry.Name = cmGlobalMinGWMakefileGenerator::GetActualName();
|
2007-10-22 12:49:09 -04:00
|
|
|
entry.Brief = "Generates a make file for use with mingw32-make.";
|
2005-12-22 16:42:36 -05:00
|
|
|
}
|