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