mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 05:50:42 +00:00
e7825386e2
-- Sort the items of the project files, previously they were unsorted The layout is similar to Visual Studio projects -- Do not make a make a tree of directories and projects files The main project file is in the binary folder The sub-project files are located in the project object directory This is similar to the Makefile generator -- Allow the creation of a single project file If the variable or target property GHS_NO_SOURCE_GROUP_FILE is set then all sources will be listed in the main project file
121 lines
4.5 KiB
C++
121 lines
4.5 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmGhsMultiTargetGenerator_h
|
|
#define cmGhsMultiTargetGenerator_h
|
|
|
|
#include "cmGhsMultiGpj.h"
|
|
|
|
#include "cmTarget.h"
|
|
|
|
class cmCustomCommand;
|
|
class cmGeneratedFileStream;
|
|
class cmGeneratorTarget;
|
|
class cmGlobalGhsMultiGenerator;
|
|
class cmLocalGhsMultiGenerator;
|
|
class cmMakefile;
|
|
class cmSourceFile;
|
|
|
|
class cmGhsMultiTargetGenerator
|
|
{
|
|
public:
|
|
cmGhsMultiTargetGenerator(cmGeneratorTarget* target);
|
|
|
|
virtual ~cmGhsMultiTargetGenerator();
|
|
|
|
virtual void Generate();
|
|
|
|
bool IncludeThisTarget();
|
|
std::vector<cmSourceFile*> GetSources() const;
|
|
GhsMultiGpj::Types GetGpjTag() const;
|
|
static GhsMultiGpj::Types GetGpjTag(const cmGeneratorTarget* target);
|
|
const char* GetAbsBuildFilePath() const
|
|
{
|
|
return this->AbsBuildFilePath.c_str();
|
|
}
|
|
const char* GetRelBuildFileName() const
|
|
{
|
|
return this->RelBuildFileName.c_str();
|
|
}
|
|
const char* GetAbsBuildFileName() const
|
|
{
|
|
return this->AbsBuildFileName.c_str();
|
|
}
|
|
const char* GetAbsOutputFileName() const
|
|
{
|
|
return this->AbsOutputFileName.c_str();
|
|
}
|
|
|
|
static std::string GetRelBuildFilePath(const cmGeneratorTarget* target);
|
|
static std::string GetAbsPathToRoot(const cmGeneratorTarget* target);
|
|
static std::string GetAbsBuildFilePath(const cmGeneratorTarget* target);
|
|
static std::string GetRelBuildFileName(const cmGeneratorTarget* target);
|
|
static std::string GetBuildFileName(const cmGeneratorTarget* target);
|
|
static std::string AddSlashIfNeededToPath(std::string const& input);
|
|
|
|
private:
|
|
cmGlobalGhsMultiGenerator* GetGlobalGenerator() const;
|
|
cmGeneratedFileStream* GetFolderBuildStreams()
|
|
{
|
|
return this->FolderBuildStreams[""];
|
|
};
|
|
bool IsTargetGroup() const { return this->TargetGroup; }
|
|
|
|
void WriteTypeSpecifics(std::ostream& fout, const std::string& config,
|
|
bool notKernel);
|
|
void WriteCompilerFlags(std::ostream& fout, const std::string& config,
|
|
const std::string& language);
|
|
void WriteCompilerDefinitions(std::ostream& fout, const std::string& config,
|
|
const std::string& language);
|
|
|
|
void SetCompilerFlags(std::string const& config, const std::string& language,
|
|
bool const notKernel);
|
|
std::string GetDefines(const std::string& langugae,
|
|
std::string const& config);
|
|
|
|
void WriteIncludes(std::ostream& fout, const std::string& config,
|
|
const std::string& language);
|
|
void WriteTargetLinkLibraries(std::ostream& fout, std::string const& config,
|
|
std::string const& language);
|
|
void WriteCustomCommands(std::ostream& fout);
|
|
void WriteCustomCommandsHelper(
|
|
std::ostream& fout, std::vector<cmCustomCommand> const& commandsSet,
|
|
cmTarget::CustomCommandType commandType);
|
|
void WriteSources(std::ostream& fout_proj);
|
|
static std::map<const cmSourceFile*, std::string> GetObjectNames(
|
|
std::vector<cmSourceFile*>* objectSources,
|
|
cmLocalGhsMultiGenerator* localGhsMultiGenerator,
|
|
cmGeneratorTarget* generatorTarget);
|
|
static void WriteObjectLangOverride(std::ostream* fout,
|
|
const cmSourceFile* sourceFile);
|
|
static void WriteObjectDir(std::ostream& fout, std::string const& dir);
|
|
std::string GetOutputDirectory(const std::string& config) const;
|
|
std::string GetOutputFilename(const std::string& config) const;
|
|
static std::string ComputeLongestObjectDirectory(
|
|
cmLocalGhsMultiGenerator const* localGhsMultiGenerator,
|
|
cmGeneratorTarget* generatorTarget, cmSourceFile* const sourceFile);
|
|
|
|
bool IsNotKernel(std::string const& config, const std::string& language);
|
|
static bool DetermineIfTargetGroup(const cmGeneratorTarget* target);
|
|
bool DetermineIfDynamicDownload(std::string const& config,
|
|
const std::string& language);
|
|
|
|
cmGeneratorTarget* GeneratorTarget;
|
|
cmLocalGhsMultiGenerator* LocalGenerator;
|
|
cmMakefile* Makefile;
|
|
std::string AbsBuildFilePath;
|
|
std::string RelBuildFilePath;
|
|
std::string AbsBuildFileName;
|
|
std::string RelBuildFileName;
|
|
std::string RelOutputFileName;
|
|
std::string AbsOutputFileName;
|
|
std::map<std::string, cmGeneratedFileStream*> FolderBuildStreams;
|
|
bool TargetGroup;
|
|
bool DynamicDownload;
|
|
static std::string const DDOption;
|
|
std::map<std::string, std::string> FlagsByLanguage;
|
|
std::map<std::string, std::string> DefinesByLanguage;
|
|
std::string const Name;
|
|
};
|
|
|
|
#endif // ! cmGhsMultiTargetGenerator_h
|