2002-09-04 23:22:11 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-09-04 23:22:11 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-09-04 23:22:11 +04:00
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#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
|
2007-06-28 17:09:26 +04:00
|
|
|
::EnableLanguage(std::vector<std::string>const& l,
|
|
|
|
cmMakefile *mf,
|
|
|
|
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");
|
2002-12-04 18:57:22 +03: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
|
|
|
|
::GetDocumentation(cmDocumentationEntry& entry) const
|
2003-07-08 05:52:10 +04:00
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
entry.Name = this->GetName();
|
|
|
|
entry.Brief = "Generates Borland makefiles.";
|
|
|
|
entry.Full = "";
|
2003-07-08 05:52:10 +04:00
|
|
|
}
|