cmake/Source/cmGlobalBorlandMakefileGenerator.h

63 lines
2.2 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. */
#ifndef cmGlobalBorlandMakefileGenerator_h
#define cmGlobalBorlandMakefileGenerator_h
#include "cmGlobalNMakeMakefileGenerator.h"
2018-08-09 18:06:22 +02:00
#include <iosfwd>
/** \class cmGlobalBorlandMakefileGenerator
* \brief Write a Borland makefiles.
*
* cmGlobalBorlandMakefileGenerator manages nmake build process for a tree
*/
2015-08-17 11:37:30 +02:00
class cmGlobalBorlandMakefileGenerator : public cmGlobalUnixMakefileGenerator3
{
public:
2015-08-17 11:37:30 +02:00
cmGlobalBorlandMakefileGenerator(cmake* cm);
2016-07-09 11:21:54 +02:00
static cmGlobalGeneratorFactory* NewFactory()
{
return new cmGlobalGeneratorSimpleFactory<
cmGlobalBorlandMakefileGenerator>();
}
2013-03-16 19:13:01 +02:00
///! Get the name for the generator.
2018-08-09 18:06:22 +02:00
std::string GetName() const override
2016-07-09 11:21:54 +02:00
{
return cmGlobalBorlandMakefileGenerator::GetActualName();
}
static std::string GetActualName() { return "Borland Makefiles"; }
/** Get the documentation entry for this generator. */
2013-03-16 19:13:01 +02:00
static void GetDocumentation(cmDocumentationEntry& entry);
///! Create a local generator appropriate to this Global Generator
2018-08-09 18:06:22 +02:00
cmLocalGenerator* CreateLocalGenerator(cmMakefile* mf) override;
/**
2015-04-27 22:25:09 +02:00
* Try to determine system information such as shared library
2013-03-16 19:13:01 +02:00
* extension, pthreads, byte order etc.
*/
2018-08-09 18:06:22 +02:00
void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
bool optional) override;
bool AllowNotParallel() const override { return false; }
bool AllowDeleteOnError() const override { return false; }
protected:
void GenerateBuildCommand(std::vector<std::string>& makeCommand,
const std::string& makeProgram,
const std::string& projectName,
const std::string& projectDir,
const std::string& targetName,
const std::string& config, bool fast, int jobs,
bool verbose,
std::vector<std::string> const& makeOptions =
std::vector<std::string>()) override;
void PrintBuildCommandAdvice(std::ostream& os, int jobs) const override;
};
#endif