2015-03-24 08:12:55 +03:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2015 Geoffrey Viola <geoffrey.viola@asirobots.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 cmGhsMultiGenerator_h
|
|
|
|
#define cmGhsMultiGenerator_h
|
|
|
|
|
|
|
|
#include "cmGlobalGenerator.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2015-03-24 08:12:55 +03:00
|
|
|
#include "cmGhsMultiGpj.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmGlobalGeneratorFactory.h"
|
2015-03-24 08:12:55 +03:00
|
|
|
|
|
|
|
class cmGeneratedFileStream;
|
|
|
|
|
|
|
|
class cmGlobalGhsMultiGenerator : public cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// The default name of GHS MULTI's build file. Typically: monolith.gpj.
|
2016-05-16 17:34:04 +03:00
|
|
|
static const char* FILE_EXTENSION;
|
2015-03-24 08:12:55 +03:00
|
|
|
|
2015-05-24 12:31:14 +03:00
|
|
|
cmGlobalGhsMultiGenerator(cmake* cm);
|
2015-03-24 08:12:55 +03:00
|
|
|
~cmGlobalGhsMultiGenerator();
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
static cmGlobalGeneratorFactory* NewFactory()
|
|
|
|
{
|
|
|
|
return new cmGlobalGeneratorSimpleFactory<cmGlobalGhsMultiGenerator>();
|
|
|
|
}
|
2015-03-24 08:12:55 +03:00
|
|
|
|
|
|
|
///! create the correct local generator
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual cmLocalGenerator* CreateLocalGenerator(cmMakefile* mf);
|
2015-03-24 08:12:55 +03:00
|
|
|
|
|
|
|
/// @return the name of this generator.
|
|
|
|
static std::string GetActualName() { return "Green Hills MULTI"; }
|
2015-02-15 22:17:54 +03:00
|
|
|
|
2015-03-24 08:12:55 +03:00
|
|
|
///! Get the name for this generator
|
|
|
|
virtual std::string GetName() const { return this->GetActualName(); }
|
|
|
|
|
|
|
|
/// Overloaded methods. @see cmGlobalGenerator::GetDocumentation()
|
2016-05-16 17:34:04 +03:00
|
|
|
static void GetDocumentation(cmDocumentationEntry& entry);
|
2015-03-24 08:12:55 +03:00
|
|
|
|
2015-02-15 22:17:54 +03:00
|
|
|
/**
|
|
|
|
* Utilized by the generator factory to determine if this generator
|
|
|
|
* supports toolsets.
|
|
|
|
*/
|
|
|
|
static bool SupportsToolset() { return false; }
|
|
|
|
|
2016-07-11 16:44:37 +03:00
|
|
|
/**
|
|
|
|
* Utilized by the generator factory to determine if this generator
|
|
|
|
* supports platforms.
|
|
|
|
*/
|
|
|
|
static bool SupportsPlatform() { return false; }
|
|
|
|
|
2015-03-24 08:12:55 +03:00
|
|
|
/**
|
|
|
|
* Try to determine system information such as shared library
|
|
|
|
* extension, pthreads, byte order etc.
|
|
|
|
*/
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual void EnableLanguage(std::vector<std::string> const& languages,
|
|
|
|
cmMakefile*, bool optional);
|
2015-03-24 08:12:55 +03:00
|
|
|
/*
|
|
|
|
* Determine what program to use for building the project.
|
|
|
|
*/
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual void FindMakeProgram(cmMakefile*);
|
2015-03-24 08:12:55 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratedFileStream* GetBuildFileStream()
|
2015-03-24 08:12:55 +03:00
|
|
|
{
|
|
|
|
return this->TargetFolderBuildStreams[""];
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
static void OpenBuildFileStream(std::string const& filepath,
|
|
|
|
cmGeneratedFileStream** filestream);
|
|
|
|
static void OpenBuildFileStream(cmGeneratedFileStream* filestream);
|
|
|
|
static void CloseBuildFileStream(cmGeneratedFileStream** filestream);
|
2015-03-24 08:12:55 +03:00
|
|
|
/// Write the common disclaimer text at the top of each build file.
|
2016-05-16 17:34:04 +03:00
|
|
|
static void WriteDisclaimer(std::ostream* os);
|
2015-03-24 08:12:55 +03:00
|
|
|
std::vector<std::string> GetLibDirs() { return this->LibDirs; }
|
|
|
|
|
|
|
|
static void AddFilesUpToPath(
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratedFileStream* mainBuildFile,
|
|
|
|
std::map<std::string, cmGeneratedFileStream*>* targetFolderBuildStreams,
|
|
|
|
char const* homeOutputDirectory, std::string const& path,
|
|
|
|
GhsMultiGpj::Types projType, std::string const& relPath = "");
|
|
|
|
static void Open(std::string const& mapKeyName, std::string const& fileName,
|
|
|
|
std::map<std::string, cmGeneratedFileStream*>* fileMap);
|
|
|
|
|
|
|
|
static std::string trimQuotes(std::string const& str);
|
2015-03-24 08:12:55 +03:00
|
|
|
inline bool IsOSDirRelative() { return this->OSDirRelative; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void Generate();
|
|
|
|
virtual void GenerateBuildCommand(
|
2016-05-16 17:34:04 +03:00
|
|
|
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,
|
|
|
|
bool verbose,
|
|
|
|
std::vector<std::string> const& makeOptions = std::vector<std::string>());
|
2015-03-24 08:12:55 +03:00
|
|
|
|
|
|
|
private:
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string const& GetGhsBuildCommand();
|
2015-03-24 08:12:55 +03:00
|
|
|
std::string FindGhsBuildCommand();
|
|
|
|
std::string GetCompRoot();
|
|
|
|
std::vector<std::string> GetCompRootHardPaths();
|
|
|
|
std::vector<std::string> GetCompRootRegistry();
|
|
|
|
void OpenBuildFileStream();
|
|
|
|
|
|
|
|
void WriteMacros();
|
|
|
|
void WriteHighLevelDirectives();
|
2016-05-16 17:34:04 +03:00
|
|
|
void WriteCompilerOptions(std::string const& fOSDir);
|
2015-03-24 08:12:55 +03:00
|
|
|
|
|
|
|
static void AddFilesUpToPathNewBuildFile(
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGeneratedFileStream* mainBuildFile,
|
|
|
|
std::map<std::string, cmGeneratedFileStream*>* targetFolderBuildStreams,
|
|
|
|
char const* homeOutputDirectory, std::string const& pathUpTo, bool isFirst,
|
|
|
|
std::string const& relPath, GhsMultiGpj::Types projType);
|
2015-03-24 08:12:55 +03:00
|
|
|
static void AddFilesUpToPathAppendNextFile(
|
2016-05-16 17:34:04 +03:00
|
|
|
std::map<std::string, cmGeneratedFileStream*>* targetFolderBuildStreams,
|
|
|
|
std::string const& pathUpTo,
|
|
|
|
std::vector<cmsys::String>::const_iterator splitPathI,
|
|
|
|
std::vector<cmsys::String>::const_iterator end,
|
|
|
|
GhsMultiGpj::Types projType);
|
|
|
|
static std::string GetFileNameFromPath(std::string const& path);
|
2015-10-18 17:53:00 +03:00
|
|
|
void UpdateBuildFiles(std::vector<cmGeneratorTarget*> tgts);
|
2016-05-16 17:34:04 +03:00
|
|
|
bool IsTgtForBuild(const cmGeneratorTarget* tgt);
|
2015-03-24 08:12:55 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<cmGeneratedFileStream*> TargetSubProjects;
|
|
|
|
std::map<std::string, cmGeneratedFileStream*> TargetFolderBuildStreams;
|
2015-03-24 08:12:55 +03:00
|
|
|
|
|
|
|
std::vector<std::string> LibDirs;
|
|
|
|
|
|
|
|
bool OSDirRelative;
|
|
|
|
bool GhsBuildCommandInitialized;
|
|
|
|
std::string GhsBuildCommand;
|
2016-05-16 17:34:04 +03:00
|
|
|
static const char* DEFAULT_MAKE_PROGRAM;
|
2015-03-24 08:12:55 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|