2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-01-17 10:21:45 -05: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.
|
2006-01-17 10:21:45 -05: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.
|
|
|
|
============================================================================*/
|
2006-01-17 10:21:45 -05:00
|
|
|
#include "cmGlobalWatcomWMakeGenerator.h"
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2006-01-17 10:21:45 -05:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
|
2015-05-24 11:31:14 +02:00
|
|
|
cmGlobalWatcomWMakeGenerator::cmGlobalWatcomWMakeGenerator(cmake* cm)
|
|
|
|
: cmGlobalUnixMakefileGenerator3(cm)
|
2006-01-17 10:21:45 -05:00
|
|
|
{
|
2006-03-15 11:02:08 -05:00
|
|
|
this->FindMakeProgramFile = "CMakeFindWMake.cmake";
|
2014-03-17 19:30:38 +01:00
|
|
|
#ifdef _WIN32
|
2006-03-15 11:02:08 -05:00
|
|
|
this->ForceUnixPaths = false;
|
2014-03-17 19:30:38 +01:00
|
|
|
#endif
|
2006-04-26 21:31:39 -04:00
|
|
|
this->ToolSupportsColor = true;
|
2006-10-02 10:20:53 -04:00
|
|
|
this->NeedSymbolicMark = true;
|
2007-05-16 13:24:17 -04:00
|
|
|
this->EmptyRuleHackCommand = "@cd .";
|
2015-05-04 22:40:11 +02:00
|
|
|
#ifdef _WIN32
|
2015-05-24 11:46:30 +02:00
|
|
|
cm->GetState()->SetWindowsShell(true);
|
2015-05-04 22:40:11 +02:00
|
|
|
#endif
|
2015-05-24 11:46:30 +02:00
|
|
|
cm->GetState()->SetWatcomWMake(true);
|
2015-05-16 05:18:39 +02:00
|
|
|
this->IncludeDirective = "!include";
|
2015-05-16 05:20:36 +02:00
|
|
|
this->DefineWindowsNULL = true;
|
2015-05-16 05:21:24 +02:00
|
|
|
this->UnixCD = false;
|
2015-05-16 05:23:06 +02:00
|
|
|
this->MakeSilentFlag = "-h";
|
2006-01-17 10:21:45 -05:00
|
|
|
}
|
|
|
|
|
2006-05-11 11:47:03 -04:00
|
|
|
void cmGlobalWatcomWMakeGenerator
|
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)
|
2006-01-17 10:21:45 -05:00
|
|
|
{
|
2012-08-13 13:42:58 -04:00
|
|
|
// pick a default
|
2006-01-17 10:21:45 -05:00
|
|
|
mf->AddDefinition("WATCOM", "1");
|
2006-01-23 13:50:23 -05:00
|
|
|
mf->AddDefinition("CMAKE_QUOTE_INCLUDE_PATHS", "1");
|
2006-01-17 10:21:45 -05: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 09:09:26 -04:00
|
|
|
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
|
2006-01-17 10:21:45 -05:00
|
|
|
}
|
|
|
|
|
2006-05-11 11:47:03 -04:00
|
|
|
void cmGlobalWatcomWMakeGenerator
|
2012-11-19 16:42:24 +01:00
|
|
|
::GetDocumentation(cmDocumentationEntry& entry)
|
2006-01-17 10:21:45 -05:00
|
|
|
{
|
2012-11-19 16:42:24 +01:00
|
|
|
entry.Name = cmGlobalWatcomWMakeGenerator::GetActualName();
|
2007-10-22 12:49:09 -04:00
|
|
|
entry.Brief = "Generates Watcom WMake makefiles.";
|
2006-01-17 10:21:45 -05:00
|
|
|
}
|