2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-01-17 18:21:45 +03: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.
|
2006-01-17 18:21:45 +03: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.
|
|
|
|
============================================================================*/
|
2006-01-17 18:21:45 +03:00
|
|
|
#include "cmGlobalWatcomWMakeGenerator.h"
|
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
|
|
|
cmGlobalWatcomWMakeGenerator::cmGlobalWatcomWMakeGenerator()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->FindMakeProgramFile = "CMakeFindWMake.cmake";
|
2014-03-17 22:30:38 +04:00
|
|
|
#ifdef _WIN32
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ForceUnixPaths = false;
|
2014-03-17 22:30:38 +04:00
|
|
|
#endif
|
2006-04-27 05:31:39 +04:00
|
|
|
this->ToolSupportsColor = true;
|
2006-10-02 18:20:53 +04:00
|
|
|
this->NeedSymbolicMark = true;
|
2007-05-16 21:24:17 +04:00
|
|
|
this->EmptyRuleHackCommand = "@cd .";
|
2006-01-17 18:21:45 +03:00
|
|
|
}
|
|
|
|
|
2006-05-11 19:47:03 +04:00
|
|
|
void cmGlobalWatcomWMakeGenerator
|
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)
|
2006-01-17 18:21:45 +03:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
// pick a default
|
2006-01-17 18:21:45 +03:00
|
|
|
mf->AddDefinition("WATCOM", "1");
|
2006-01-23 21:50:23 +03:00
|
|
|
mf->AddDefinition("CMAKE_QUOTE_INCLUDE_PATHS", "1");
|
2006-01-17 18:21:45 +03:00
|
|
|
mf->AddDefinition("CMAKE_MANGLE_OBJECT_FILE_NAMES", "1");
|
|
|
|
mf->AddDefinition("CMAKE_MAKE_LINE_CONTINUE", "&");
|
|
|
|
mf->AddDefinition("CMAKE_MAKE_SYMBOLIC_RULE", ".SYMBOLIC");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CC", "wcl386");
|
|
|
|
mf->AddDefinition("CMAKE_GENERATOR_CXX", "wcl386");
|
2007-06-28 17:09:26 +04:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2006-01-17 18:21:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
cmLocalGenerator *cmGlobalWatcomWMakeGenerator::CreateLocalGenerator()
|
|
|
|
{
|
|
|
|
cmLocalUnixMakefileGenerator3* lg = new cmLocalUnixMakefileGenerator3;
|
|
|
|
lg->SetDefineWindowsNULL(true);
|
2014-03-17 22:30:38 +04:00
|
|
|
#ifdef _WIN32
|
2006-01-17 18:21:45 +03:00
|
|
|
lg->SetWindowsShell(true);
|
2014-03-17 22:30:38 +04:00
|
|
|
#endif
|
2006-10-25 19:23:04 +04:00
|
|
|
lg->SetWatcomWMake(true);
|
2014-03-09 13:41:06 +04:00
|
|
|
lg->SetMakeSilentFlag("-h");
|
2006-01-17 18:21:45 +03:00
|
|
|
lg->SetGlobalGenerator(this);
|
|
|
|
lg->SetIgnoreLibPrefix(true);
|
|
|
|
lg->SetPassMakeflags(false);
|
|
|
|
lg->SetUnixCD(false);
|
|
|
|
lg->SetIncludeDirective("!include");
|
|
|
|
return lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-05-11 19:47:03 +04:00
|
|
|
void cmGlobalWatcomWMakeGenerator
|
2012-11-19 19:42:24 +04:00
|
|
|
::GetDocumentation(cmDocumentationEntry& entry)
|
2006-01-17 18:21:45 +03:00
|
|
|
{
|
2012-11-19 19:42:24 +04:00
|
|
|
entry.Name = cmGlobalWatcomWMakeGenerator::GetActualName();
|
2007-10-22 20:49:09 +04:00
|
|
|
entry.Brief = "Generates Watcom WMake makefiles.";
|
2006-01-17 18:21:45 +03:00
|
|
|
}
|