cmake/Source/cmGlobalWatcomWMakeGenerator.cxx

92 lines
3.1 KiB
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmGlobalWatcomWMakeGenerator.h"
2016-07-09 11:21:54 +02:00
2020-02-01 23:06:01 +01:00
#include <ostream>
2016-10-30 18:24:19 +01:00
#include "cmDocumentationEntry.h"
2019-11-11 23:01:05 +01:00
#include "cmGlobalGenerator.h"
#include "cmMakefile.h"
2016-10-30 18:24:19 +01:00
#include "cmState.h"
#include "cmake.h"
2015-08-17 11:37:30 +02:00
cmGlobalWatcomWMakeGenerator::cmGlobalWatcomWMakeGenerator(cmake* cm)
: cmGlobalUnixMakefileGenerator3(cm)
{
this->FindMakeProgramFile = "CMakeFindWMake.cmake";
2015-04-27 22:25:09 +02:00
#ifdef _WIN32
this->ForceUnixPaths = false;
2015-04-27 22:25:09 +02:00
#endif
this->ToolSupportsColor = true;
this->NeedSymbolicMark = true;
2020-08-30 11:54:41 +02:00
this->EmptyRuleHackCommand = "@%null";
2015-08-17 11:37:30 +02:00
#ifdef _WIN32
cm->GetState()->SetWindowsShell(true);
#endif
cm->GetState()->SetWatcomWMake(true);
this->IncludeDirective = "!include";
this->DefineWindowsNULL = true;
this->UnixCD = false;
this->MakeSilentFlag = "-h";
}
2016-07-09 11:21:54 +02:00
void cmGlobalWatcomWMakeGenerator::EnableLanguage(
std::vector<std::string> const& l, cmMakefile* mf, bool optional)
{
2013-03-16 19:13:01 +02:00
// pick a default
mf->AddDefinition("WATCOM", "1");
mf->AddDefinition("CMAKE_QUOTE_INCLUDE_PATHS", "1");
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");
this->cmGlobalUnixMakefileGenerator3::EnableLanguage(l, mf, optional);
}
2020-08-30 11:54:41 +02:00
bool cmGlobalWatcomWMakeGenerator::SetSystemName(std::string const& s,
cmMakefile* mf)
{
if (mf->GetSafeDefinition("CMAKE_SYSTEM_PROCESSOR") == "I86") {
mf->AddDefinition("CMAKE_GENERATOR_CC", "wcl");
mf->AddDefinition("CMAKE_GENERATOR_CXX", "wcl");
}
return this->cmGlobalUnixMakefileGenerator3::SetSystemName(s, mf);
}
2016-07-09 11:21:54 +02:00
void cmGlobalWatcomWMakeGenerator::GetDocumentation(
cmDocumentationEntry& entry)
{
2013-03-16 19:13:01 +02:00
entry.Name = cmGlobalWatcomWMakeGenerator::GetActualName();
entry.Brief = "Generates Watcom WMake makefiles.";
}
2018-08-09 18:06:22 +02:00
2019-11-11 23:01:05 +01:00
std::vector<cmGlobalGenerator::GeneratedMakeCommand>
cmGlobalWatcomWMakeGenerator::GenerateBuildCommand(
const std::string& makeProgram, const std::string& projectName,
const std::string& projectDir, std::vector<std::string> const& targetNames,
const std::string& config, bool fast, int /*jobs*/, bool verbose,
std::vector<std::string> const& makeOptions)
2018-08-09 18:06:22 +02:00
{
2019-11-11 23:01:05 +01:00
return this->cmGlobalUnixMakefileGenerator3::GenerateBuildCommand(
makeProgram, projectName, projectDir, targetNames, config, fast,
cmake::NO_BUILD_PARALLEL_LEVEL, verbose, makeOptions);
2018-08-09 18:06:22 +02:00
}
void cmGlobalWatcomWMakeGenerator::PrintBuildCommandAdvice(std::ostream& os,
int jobs) const
{
if (jobs != cmake::NO_BUILD_PARALLEL_LEVEL) {
// wmake does not support parallel build level
/* clang-format off */
os <<
"Warning: Watcom's WMake does not support parallel builds. "
"Ignoring parallel build command line option.\n";
/* clang-format on */
}
this->cmGlobalUnixMakefileGenerator3::PrintBuildCommandAdvice(
os, cmake::NO_BUILD_PARALLEL_LEVEL);
}