2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 19:22:11 +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.
|
2002-09-04 19:22:11 +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.
|
|
|
|
============================================================================*/
|
2002-09-04 19:22:11 +00:00
|
|
|
#include "cmGlobalBorlandMakefileGenerator.h"
|
2005-05-12 14:49:56 +00:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
2002-09-04 19:22:11 +00:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#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
|
|
|
|
2004-08-27 12:41:07 +00:00
|
|
|
|
2006-05-10 19:56:00 +00:00
|
|
|
void cmGlobalBorlandMakefileGenerator
|
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)
|
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
|
2015-04-28 05:50:52 +00:00
|
|
|
cmLocalGenerator *cmGlobalBorlandMakefileGenerator::CreateLocalGenerator(
|
2015-08-02 09:41:51 +00:00
|
|
|
cmMakefile *mf)
|
2002-09-04 19:22:11 +00:00
|
|
|
{
|
2015-04-28 05:50:52 +00:00
|
|
|
cmLocalUnixMakefileGenerator3* lg =
|
2015-08-02 09:41:51 +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
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-10 19:56:00 +00:00
|
|
|
void cmGlobalBorlandMakefileGenerator
|
2012-11-19 15:42:24 +00:00
|
|
|
::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
|
|
|
}
|