cmake/Source/cmLocalNinjaGenerator.h

112 lines
3.9 KiB
C
Raw Normal View History

2012-04-19 19:04:21 +03:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2011 Peter Collingbourne <peter@pcc.me.uk>
Copyright 2011 Nicolas Despres <nicolas.despres@gmail.com>
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
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.
============================================================================*/
#ifndef cmLocalNinjaGenerator_h
# define cmLocalNinjaGenerator_h
2015-11-17 17:22:37 +01:00
# include "cmLocalCommonGenerator.h"
2012-04-19 19:04:21 +03:00
# include "cmNinjaTypes.h"
2015-04-27 22:25:09 +02:00
class cmCustomCommandGenerator;
2012-04-19 19:04:21 +03:00
class cmGlobalNinjaGenerator;
class cmGeneratedFileStream;
class cmake;
/**
* \class cmLocalNinjaGenerator
* \brief Write a local build.ninja file.
*
* cmLocalNinjaGenerator produces a local build.ninja file from its
* member Makefile.
*/
2015-11-17 17:22:37 +01:00
class cmLocalNinjaGenerator : public cmLocalCommonGenerator
2012-04-19 19:04:21 +03:00
{
public:
2015-11-17 17:22:37 +01:00
cmLocalNinjaGenerator(cmGlobalGenerator* gg, cmMakefile* mf);
2012-04-19 19:04:21 +03:00
virtual ~cmLocalNinjaGenerator();
virtual void Generate();
2016-03-13 13:35:51 +01:00
virtual
std::string GetTargetDirectory(cmGeneratorTarget const* target) const;
2012-04-19 19:04:21 +03:00
const cmGlobalNinjaGenerator* GetGlobalNinjaGenerator() const;
cmGlobalNinjaGenerator* GetGlobalNinjaGenerator();
const cmake* GetCMakeInstance() const;
cmake* GetCMakeInstance();
/// @returns the relative path between the HomeOutputDirectory and this
/// local generators StartOutputDirectory.
std::string GetHomeRelativeOutputPath() const
{ return this->HomeRelativeOutputPath; }
2012-08-04 10:26:08 +03:00
void ExpandRuleVariables(std::string& string,
const RuleVariables& replaceValues) {
cmLocalGenerator::ExpandRuleVariables(string, replaceValues);
}
std::string BuildCommandLine(const std::vector<std::string> &cmdLines);
2016-03-13 13:35:51 +01:00
void AppendTargetOutputs(cmGeneratorTarget* target, cmNinjaDeps& outputs);
void AppendTargetDepends(cmGeneratorTarget* target, cmNinjaDeps& outputs);
2012-04-19 19:04:21 +03:00
2016-03-13 13:35:51 +01:00
void AddCustomCommandTarget(cmCustomCommand const* cc,
cmGeneratorTarget* target);
2015-04-27 22:25:09 +02:00
void AppendCustomCommandLines(cmCustomCommandGenerator const& ccg,
2012-04-19 19:04:21 +03:00
std::vector<std::string> &cmdLines);
2015-04-27 22:25:09 +02:00
void AppendCustomCommandDeps(cmCustomCommandGenerator const& ccg,
2012-08-04 10:26:08 +03:00
cmNinjaDeps &ninjaDeps);
2015-04-27 22:25:09 +02:00
virtual std::string ConvertToLinkReference(std::string const& lib,
OutputFormat format = SHELL);
virtual void ComputeObjectFilenames(
std::map<cmSourceFile const*, std::string>& mapping,
cmGeneratorTarget const* gt = 0);
2012-08-04 10:26:08 +03:00
protected:
2015-04-27 22:25:09 +02:00
virtual std::string ConvertToIncludeReference(std::string const& path,
OutputFormat format = SHELL,
bool forceFullPaths = false);
2012-08-04 10:26:08 +03:00
private:
cmGeneratedFileStream& GetBuildFileStream() const;
cmGeneratedFileStream& GetRulesFileStream() const;
void WriteBuildFileTop();
void WriteProjectHeader(std::ostream& os);
2015-04-27 22:25:09 +02:00
void WriteNinjaRequiredVersion(std::ostream& os);
2012-08-04 10:26:08 +03:00
void WriteNinjaFilesInclusion(std::ostream& os);
void WriteProcessedMakefile(std::ostream& os);
2014-08-03 19:52:23 +02:00
void WritePools(std::ostream& os);
2012-08-04 10:26:08 +03:00
2012-04-19 19:04:21 +03:00
void WriteCustomCommandRule();
void WriteCustomCommandBuildStatement(cmCustomCommand const *cc,
const cmNinjaDeps& orderOnlyDeps);
void WriteCustomCommandBuildStatements();
2015-04-27 22:25:09 +02:00
std::string MakeCustomLauncher(cmCustomCommandGenerator const& ccg);
2012-08-04 10:26:08 +03:00
2012-04-19 19:04:21 +03:00
std::string HomeRelativeOutputPath;
2016-03-13 13:35:51 +01:00
typedef std::map<cmCustomCommand const*, std::set<cmGeneratorTarget*> >
2012-04-19 19:04:21 +03:00
CustomCommandTargetMap;
CustomCommandTargetMap CustomCommandTargets;
};
#endif // ! cmLocalNinjaGenerator_h