2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2002-09-04 19:22:11 +00:00
|
|
|
#include "cmGlobalBorlandMakefileGenerator.h"
|
2016-04-29 13:40:20 +00:00
|
|
|
|
2016-11-05 20:40:14 +00:00
|
|
|
#include "cmDocumentationEntry.h"
|
2005-05-12 14:49:56 +00:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
2002-09-04 19:22:11 +00:00
|
|
|
#include "cmMakefile.h"
|
2016-10-18 19:28:49 +00:00
|
|
|
#include "cmState.h"
|
2002-09-04 19:22:11 +00:00
|
|
|
#include "cmake.h"
|
2005-03-01 17:27:06 +00:00
|
|
|
|
2015-05-24 09:31:14 +00:00
|
|
|
cmGlobalBorlandMakefileGenerator::cmGlobalBorlandMakefileGenerator(cmake* cm)
|
|
|
|
: cmGlobalUnixMakefileGenerator3(cm)
|
2002-12-05 18:44:11 +00:00
|
|
|
{
|
2006-03-15 16:02:08 +00:00
|
|
|
this->EmptyRuleHackDepends = "NUL";
|
|
|
|
this->FindMakeProgramFile = "CMakeBorlandFindMake.cmake";
|
|
|
|
this->ForceUnixPaths = false;
|
2006-04-27 01:31:39 +00:00
|
|
|
this->ToolSupportsColor = true;
|
2006-06-15 20:17:11 +00:00
|
|
|
this->UseLinkScript = false;
|
2015-05-24 09:46:30 +00:00
|
|
|
cm->GetState()->SetWindowsShell(true);
|
2015-05-16 03:18:39 +00:00
|
|
|
this->IncludeDirective = "!include";
|
2015-05-16 03:20:36 +00:00
|
|
|
this->DefineWindowsNULL = true;
|
2015-05-16 03:20:58 +00:00
|
|
|
this->PassMakeflags = true;
|
2015-05-16 03:21:24 +00:00
|
|
|
this->UnixCD = false;
|
2002-12-05 18:44:11 +00:00
|
|
|
}
|
2002-09-04 19:22:11 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmGlobalBorlandMakefileGenerator::EnableLanguage(
|
|
|
|
std::vector<std::string> const& l, cmMakefile* mf, bool optional)
|
2002-09-04 19:22:11 +00:00
|
|
|
{
|
2015-04-16 18:06:54 +00:00
|
|
|
std::string outdir = this->CMakeInstance->GetHomeOutputDirectory();
|
2002-11-08 20:46:08 +00:00
|
|
|
mf->AddDefinition("BORLAND", "1");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CC", "bcc32");
|
2012-08-13 17:42:58 +00:00
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CXX", "bcc32");
|
2007-06-28 13:09:26 +00:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2002-09-04 19:22:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
2016-05-16 14:34:04 +00:00
|
|
|
cmLocalGenerator* cmGlobalBorlandMakefileGenerator::CreateLocalGenerator(
|
|
|
|
cmMakefile* mf)
|
2002-09-04 19:22:11 +00:00
|
|
|
{
|
2015-04-28 05:50:52 +00:00
|
|
|
cmLocalUnixMakefileGenerator3* lg =
|
2016-05-16 14:34:04 +00:00
|
|
|
new cmLocalUnixMakefileGenerator3(this, mf);
|
2002-11-08 20:46:08 +00:00
|
|
|
lg->SetMakefileVariableSize(32);
|
2007-03-08 18:05:02 +00:00
|
|
|
lg->SetMakeCommandEscapeTargetTwice(true);
|
2007-05-17 14:53:18 +00:00
|
|
|
lg->SetBorlandMakeCurlyHack(true);
|
2002-09-04 19:22:11 +00:00
|
|
|
return lg;
|
|
|
|
}
|
2003-07-08 01:52:10 +00:00
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
void cmGlobalBorlandMakefileGenerator::GetDocumentation(
|
|
|
|
cmDocumentationEntry& entry)
|
2003-07-08 01:52:10 +00:00
|
|
|
{
|
2012-11-19 15:42:24 +00:00
|
|
|
entry.Name = cmGlobalBorlandMakefileGenerator::GetActualName();
|
2007-10-22 16:49:09 +00:00
|
|
|
entry.Brief = "Generates Borland makefiles.";
|
2003-07-08 01:52:10 +00:00
|
|
|
}
|