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"
|
|
|
|
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalWatcomWMakeGenerator::cmGlobalWatcomWMakeGenerator(cmake* cm)
|
|
|
|
: cmGlobalUnixMakefileGenerator3(cm)
|
2006-01-17 18:21:45 +03:00
|
|
|
{
|
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 .";
|
2015-05-04 23:40:11 +03:00
|
|
|
#ifdef _WIN32
|
2015-05-24 12:46:30 +03:00
|
|
|
cm->GetState()->SetWindowsShell(true);
|
2015-05-04 23:40:11 +03:00
|
|
|
#endif
|
2015-05-24 12:46:30 +03:00
|
|
|
cm->GetState()->SetWatcomWMake(true);
|
2015-05-16 06:18:39 +03:00
|
|
|
this->IncludeDirective = "!include";
|
2015-05-16 06:20:36 +03:00
|
|
|
this->DefineWindowsNULL = true;
|
2015-05-16 06:21:24 +03:00
|
|
|
this->UnixCD = false;
|
2015-05-16 06:23:06 +03:00
|
|
|
this->MakeSilentFlag = "-h";
|
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
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
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
|
|
|
}
|