mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
25 lines
810 B
C++
25 lines
810 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file LICENSE.rst or https://cmake.org/licensing for details. */
|
|
#include "cmGlobalMinGWMakefileGenerator.h"
|
|
|
|
#include "cmState.h"
|
|
#include "cmSystemTools.h"
|
|
#include "cmake.h"
|
|
|
|
cmGlobalMinGWMakefileGenerator::cmGlobalMinGWMakefileGenerator(cmake* cm)
|
|
: cmGlobalUnixMakefileGenerator3(cm)
|
|
{
|
|
this->FindMakeProgramFile = "CMakeMinGWFindMake.cmake";
|
|
this->ForceUnixPaths = true;
|
|
this->ToolSupportsColor = true;
|
|
this->UseLinkScript = true;
|
|
cm->GetState()->SetWindowsShell(true);
|
|
cm->GetState()->SetMinGWMake(true);
|
|
}
|
|
|
|
cmDocumentationEntry cmGlobalMinGWMakefileGenerator::GetDocumentation()
|
|
{
|
|
return { cmGlobalMinGWMakefileGenerator::GetActualName(),
|
|
"Generates a make file for use with mingw32-make." };
|
|
}
|