2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 15:22:11 -04: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.
|
2002-09-04 15:22:11 -04: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.
|
|
|
|
============================================================================*/
|
2002-09-04 15:22:11 -04:00
|
|
|
#include "cmGlobalBorlandMakefileGenerator.h"
|
2005-05-12 10:49:56 -04:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
2002-09-04 15:22:11 -04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmake.h"
|
2005-03-01 12:27:06 -05:00
|
|
|
|
2002-12-05 13:44:11 -05:00
|
|
|
cmGlobalBorlandMakefileGenerator::cmGlobalBorlandMakefileGenerator()
|
|
|
|
{
|
2006-03-15 11:02:08 -05:00
|
|
|
this->EmptyRuleHackDepends = "NUL";
|
|
|
|
this->FindMakeProgramFile = "CMakeBorlandFindMake.cmake";
|
|
|
|
this->ForceUnixPaths = false;
|
2006-04-26 21:31:39 -04:00
|
|
|
this->ToolSupportsColor = true;
|
2006-06-15 16:17:11 -04:00
|
|
|
this->UseLinkScript = false;
|
2002-12-05 13:44:11 -05:00
|
|
|
}
|
2002-09-04 15:22:11 -04:00
|
|
|
|
2004-08-27 08:41:07 -04:00
|
|
|
|
2006-05-10 15:56:00 -04:00
|
|
|
void cmGlobalBorlandMakefileGenerator
|
2012-08-13 13:42:58 -04:00
|
|
|
::EnableLanguage(std::vector<std::string>const& l,
|
|
|
|
cmMakefile *mf,
|
2007-06-28 09:09:26 -04:00
|
|
|
bool optional)
|
2002-09-04 15:22:11 -04:00
|
|
|
{
|
2006-03-15 11:02:08 -05:00
|
|
|
std::string outdir = this->CMakeInstance->GetStartOutputDirectory();
|
2002-11-08 15:46:08 -05:00
|
|
|
mf->AddDefinition("BORLAND", "1");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CC", "bcc32");
|
2012-08-13 13:42:58 -04:00
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CXX", "bcc32");
|
2007-06-28 09:09:26 -04:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2002-09-04 15:22:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalBorlandMakefileGenerator::CreateLocalGenerator()
|
|
|
|
{
|
2005-05-12 10:49:56 -04:00
|
|
|
cmLocalUnixMakefileGenerator3* lg = new cmLocalUnixMakefileGenerator3;
|
2002-11-08 15:46:08 -05:00
|
|
|
lg->SetIncludeDirective("!include");
|
|
|
|
lg->SetWindowsShell(true);
|
2005-12-22 16:42:36 -05:00
|
|
|
lg->SetDefineWindowsNULL(true);
|
2002-11-08 15:46:08 -05:00
|
|
|
lg->SetMakefileVariableSize(32);
|
2003-10-28 11:06:06 -05:00
|
|
|
lg->SetPassMakeflags(true);
|
2002-09-04 15:22:11 -04:00
|
|
|
lg->SetGlobalGenerator(this);
|
2005-12-22 16:42:36 -05:00
|
|
|
lg->SetUnixCD(false);
|
2007-03-08 13:05:02 -05:00
|
|
|
lg->SetMakeCommandEscapeTargetTwice(true);
|
2007-05-17 10:53:18 -04:00
|
|
|
lg->SetBorlandMakeCurlyHack(true);
|
2002-09-04 15:22:11 -04:00
|
|
|
return lg;
|
|
|
|
}
|
2003-07-07 21:52:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-10 15:56:00 -04:00
|
|
|
void cmGlobalBorlandMakefileGenerator
|
2012-11-19 16:42:24 +01:00
|
|
|
::GetDocumentation(cmDocumentationEntry& entry)
|
2003-07-07 21:52:10 -04:00
|
|
|
{
|
2012-11-19 16:42:24 +01:00
|
|
|
entry.Name = cmGlobalBorlandMakefileGenerator::GetActualName();
|
2007-10-22 12:49:09 -04:00
|
|
|
entry.Brief = "Generates Borland makefiles.";
|
|
|
|
entry.Full = "";
|
2003-07-07 21:52:10 -04:00
|
|
|
}
|