cmake/Source/cmGlobalNMakeMakefileGenerator.h

66 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 cmGlobalNMakeMakefileGenerator_h
#define cmGlobalNMakeMakefileGenerator_h
#include "cmGlobalUnixMakefileGenerator3.h"
2018-08-09 18:06:22 +02:00
#include <iosfwd>
/** \class cmGlobalNMakeMakefileGenerator
* \brief Write a NMake makefiles.
*
* cmGlobalNMakeMakefileGenerator manages nmake build process for a tree
*/
class cmGlobalNMakeMakefileGenerator : public cmGlobalUnixMakefileGenerator3
{
public:
2015-08-17 11:37:30 +02:00
cmGlobalNMakeMakefileGenerator(cmake* cm);
2016-07-09 11:21:54 +02:00
static cmGlobalGeneratorFactory* NewFactory()
{
return new cmGlobalGeneratorSimpleFactory<
cmGlobalNMakeMakefileGenerator>();
}
///! 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 cmGlobalNMakeMakefileGenerator::GetActualName();
}
static std::string GetActualName() { return "NMake Makefiles"; }
2017-04-14 19:02:05 +02:00
/** Get encoding used by generator for makefile files */
2018-01-26 17:06:56 +01:00
codecvt::Encoding GetMakefileEncoding() const override
2017-04-14 19:02:05 +02:00
{
return codecvt::ANSI;
}
/** Get the documentation entry for this generator. */
2013-03-16 19:13:01 +02:00
static void GetDocumentation(cmDocumentationEntry& entry);
/**
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;
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;
2016-07-09 11:21:54 +02:00
2015-11-17 17:22:37 +01:00
private:
void PrintCompilerAdvice(std::ostream& os, std::string const& lang,
2018-08-09 18:06:22 +02:00
const char* envVar) const override;
};
#endif