2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2002-08-30 16:00:35 -04:00
|
|
|
|
|
|
|
#ifndef cmGlobalGenerator_h
|
|
|
|
#define cmGlobalGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
2006-02-23 10:07:24 -05:00
|
|
|
#include "cmTarget.h" // For cmTargets
|
2010-08-25 10:07:25 -04:00
|
|
|
#include "cmTargetDepend.h" // For cmTargetDependSet
|
2011-07-26 09:26:18 +02:00
|
|
|
#include "cmSystemTools.h" // for cmSystemTools::OutputOption
|
2012-03-01 02:02:56 +04:00
|
|
|
#include "cmExportSetMap.h" // For cmExportSetMap
|
2012-09-13 00:03:23 +02:00
|
|
|
#include "cmGeneratorTarget.h"
|
2013-01-02 17:10:04 +01:00
|
|
|
#include "cmGeneratorExpression.h"
|
2012-09-24 22:06:20 +02:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
class cmake;
|
2012-03-07 11:50:41 -05:00
|
|
|
class cmGeneratorTarget;
|
2013-01-02 17:10:04 +01:00
|
|
|
class cmGeneratorExpressionEvaluationFile;
|
2002-08-30 16:00:35 -04:00
|
|
|
class cmMakefile;
|
|
|
|
class cmLocalGenerator;
|
2007-06-15 16:07:16 -04:00
|
|
|
class cmExternalMakefileProjectGenerator;
|
2005-02-03 17:42:55 -05:00
|
|
|
class cmTarget;
|
2007-06-19 13:10:21 -04:00
|
|
|
class cmInstallTargetGenerator;
|
2007-08-27 16:04:57 -04:00
|
|
|
class cmInstallFilesGenerator;
|
2012-10-06 17:27:40 +02:00
|
|
|
class cmExportBuildFileGenerator;
|
2013-11-04 10:34:54 +01:00
|
|
|
class cmQtAutoGenerators;
|
2002-08-30 16:00:35 -04:00
|
|
|
|
|
|
|
/** \class cmGlobalGenerator
|
|
|
|
* \brief Responable for overseeing the generation process for the entire tree
|
|
|
|
*
|
|
|
|
* Subclasses of this class generate makefiles for various
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
class cmGlobalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///! Free any memory allocated with the GlobalGenerator
|
2002-09-04 15:24:49 -04:00
|
|
|
cmGlobalGenerator();
|
2002-08-30 16:00:35 -04:00
|
|
|
virtual ~cmGlobalGenerator();
|
2010-11-11 22:02:07 +01:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
///! Create a local generator appropriate to this Global Generator
|
|
|
|
virtual cmLocalGenerator *CreateLocalGenerator();
|
|
|
|
|
|
|
|
///! Get the name for this generator
|
2003-07-07 21:52:10 -04:00
|
|
|
virtual const char *GetName() const { return "Generic"; };
|
2010-11-11 22:02:07 +01:00
|
|
|
|
2013-10-28 10:08:11 -04:00
|
|
|
/** Check whether the given name matches the current generator. */
|
|
|
|
virtual bool MatchesGeneratorName(const char* name) const
|
|
|
|
{ return strcmp(this->GetName(), name) == 0; }
|
|
|
|
|
2012-12-10 10:42:33 -05:00
|
|
|
/** Set the generator-specific toolset name. Returns true if toolset
|
|
|
|
is supported and false otherwise. */
|
|
|
|
virtual bool SetGeneratorToolset(std::string const& ts);
|
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
/**
|
|
|
|
* Create LocalGenerators and process the CMakeLists files. This does not
|
2010-11-11 22:02:07 +01:00
|
|
|
* actually produce any makefiles, DSPs, etc.
|
2002-08-30 16:00:35 -04:00
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the all required files for building this project/tree. This
|
|
|
|
* basically creates a series of LocalGenerators for each directory and
|
2010-11-11 22:02:07 +01:00
|
|
|
* requests that they Generate.
|
2002-08-30 16:00:35 -04:00
|
|
|
*/
|
|
|
|
virtual void Generate();
|
|
|
|
|
|
|
|
/**
|
2010-11-11 22:02:07 +01:00
|
|
|
* Set/Get and Clear the enabled languages.
|
2002-08-30 16:00:35 -04:00
|
|
|
*/
|
2004-09-03 12:03:41 -04:00
|
|
|
void SetLanguageEnabled(const char*, cmMakefile* mf);
|
2007-08-31 13:42:21 -04:00
|
|
|
bool GetLanguageEnabled(const char*) const;
|
2002-08-30 16:00:35 -04:00
|
|
|
void ClearEnabledLanguages();
|
2004-09-22 14:42:05 -04:00
|
|
|
void GetEnabledLanguages(std::vector<std::string>& lang);
|
2002-08-30 16:00:35 -04:00
|
|
|
/**
|
|
|
|
* Try to determine system infomation such as shared library
|
2010-11-11 22:02:07 +01:00
|
|
|
* extension, pthreads, byte order etc.
|
2002-08-30 16:00:35 -04:00
|
|
|
*/
|
2006-03-10 13:54:57 -05:00
|
|
|
virtual void EnableLanguage(std::vector<std::string>const& languages,
|
2007-06-28 09:09:26 -04:00
|
|
|
cmMakefile *, bool optional);
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2011-09-10 03:52:53 +01:00
|
|
|
/**
|
|
|
|
* Resolve the CMAKE_<lang>_COMPILER setting for the given language.
|
|
|
|
* Intended to be called from EnableLanguage.
|
|
|
|
*/
|
|
|
|
void ResolveLanguageCompiler(const std::string &lang, cmMakefile *mf,
|
|
|
|
bool optional);
|
|
|
|
|
2002-09-13 10:42:50 -04:00
|
|
|
/**
|
|
|
|
* Try to determine system infomation, get it from another generator
|
|
|
|
*/
|
2011-01-24 10:00:45 -05:00
|
|
|
virtual void EnableLanguagesFromGenerator(cmGlobalGenerator *gen,
|
|
|
|
cmMakefile* mf);
|
2002-09-13 10:42:50 -04:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
/**
|
2011-03-19 11:41:00 +01:00
|
|
|
* Try running cmake and building a file. This is used for dynamically
|
2002-08-30 16:00:35 -04:00
|
|
|
* loaded commands, not as part of the usual build process.
|
|
|
|
*/
|
|
|
|
virtual int TryCompile(const char *srcdir, const char *bindir,
|
2002-09-20 13:15:56 -04:00
|
|
|
const char *projectName, const char *targetName,
|
2009-08-04 14:37:46 -04:00
|
|
|
bool fast, std::string *output, cmMakefile* mf);
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2010-11-11 22:02:07 +01:00
|
|
|
|
2005-02-22 09:12:10 -05:00
|
|
|
/**
|
|
|
|
* Build a file given the following information. This is a more direct call
|
|
|
|
* that is used by both CTest and TryCompile. If target name is NULL or
|
|
|
|
* empty then all is assumed. clean indicates if a "make clean" should be
|
|
|
|
* done first.
|
|
|
|
*/
|
2009-03-04 15:38:47 -05:00
|
|
|
int Build(const char *srcdir, const char *bindir,
|
|
|
|
const char *projectName, const char *targetName,
|
|
|
|
std::string *output,
|
|
|
|
const char *makeProgram, const char *config,
|
|
|
|
bool clean, bool fast,
|
2011-07-26 09:26:18 +02:00
|
|
|
double timeout,
|
|
|
|
cmSystemTools::OutputOption outputflag=cmSystemTools::OUTPUT_NONE,
|
2009-03-04 15:38:47 -05:00
|
|
|
std::vector<std::string> const& nativeOptions =
|
|
|
|
std::vector<std::string>());
|
2010-11-11 22:02:07 +01:00
|
|
|
|
2013-11-15 13:33:32 -05:00
|
|
|
virtual void GenerateBuildCommand(
|
|
|
|
std::vector<std::string>& makeCommand,
|
2008-10-15 13:56:07 -04:00
|
|
|
const char* makeProgram,
|
2013-03-21 15:53:26 +01:00
|
|
|
const char *projectName, const char *projectDir,
|
2013-11-15 13:33:32 -05:00
|
|
|
const char *targetName, const char* config, bool fast,
|
|
|
|
std::vector<std::string> const& makeOptions = std::vector<std::string>()
|
|
|
|
);
|
2010-11-11 22:02:07 +01:00
|
|
|
|
2013-11-13 15:59:32 -05:00
|
|
|
/** Generate a "cmake --build" call for a given target and config. */
|
|
|
|
std::string GenerateCMakeBuildCommand(const char* target,
|
|
|
|
const char* config,
|
|
|
|
const char* native,
|
|
|
|
bool ignoreErrors);
|
2005-02-22 09:12:10 -05:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
///! Set the CMake instance
|
2006-05-25 09:47:30 -04:00
|
|
|
void SetCMakeInstance(cmake *cm);
|
2010-11-11 22:02:07 +01:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
///! Get the CMake instance
|
2013-11-12 08:42:51 -05:00
|
|
|
cmake *GetCMakeInstance() const { return this->CMakeInstance; }
|
2006-03-15 11:02:08 -05:00
|
|
|
|
2009-08-03 13:37:36 -04:00
|
|
|
void SetConfiguredFilesPath(cmGlobalGenerator* gen);
|
2010-11-11 22:02:07 +01:00
|
|
|
const std::vector<cmLocalGenerator *>& GetLocalGenerators() const {
|
2007-06-15 10:10:24 -04:00
|
|
|
return this->LocalGenerators;}
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2010-11-11 22:02:07 +01:00
|
|
|
cmLocalGenerator* GetCurrentLocalGenerator()
|
2007-07-17 09:25:08 -04:00
|
|
|
{return this->CurrentLocalGenerator;}
|
|
|
|
|
2010-11-11 22:02:07 +01:00
|
|
|
void SetCurrentLocalGenerator(cmLocalGenerator* lg)
|
2007-07-17 09:25:08 -04:00
|
|
|
{this->CurrentLocalGenerator = lg;}
|
|
|
|
|
2005-03-18 10:41:41 -05:00
|
|
|
void AddLocalGenerator(cmLocalGenerator *lg);
|
2006-03-30 13:33:48 -05:00
|
|
|
|
2007-06-08 11:57:16 -04:00
|
|
|
///! Set an generator for an "external makefile based project"
|
|
|
|
void SetExternalMakefileProjectGenerator(
|
|
|
|
cmExternalMakefileProjectGenerator *extraGenerator);
|
|
|
|
|
2007-06-15 16:07:16 -04:00
|
|
|
const char* GetExtraGeneratorName() const;
|
2007-06-08 11:57:16 -04:00
|
|
|
|
2006-03-30 13:33:48 -05:00
|
|
|
void AddInstallComponent(const char* component);
|
2007-06-19 13:10:21 -04:00
|
|
|
|
2010-11-11 22:02:07 +01:00
|
|
|
const std::set<cmStdString>* GetInstallComponents() const
|
2012-09-15 21:12:59 +02:00
|
|
|
{ return &this->InstallComponents; }
|
2008-07-08 11:52:25 -04:00
|
|
|
|
2012-03-01 02:02:56 +04:00
|
|
|
cmExportSetMap& GetExportSets() {return this->ExportSets;}
|
2007-06-19 13:10:21 -04:00
|
|
|
|
2008-01-22 09:13:04 -05:00
|
|
|
/** Add a file to the manifest of generated targets for a configuration. */
|
|
|
|
void AddToManifest(const char* config, std::string const& f);
|
|
|
|
|
2006-08-31 10:47:00 -04:00
|
|
|
void EnableInstallTarget();
|
2007-06-19 13:10:21 -04:00
|
|
|
|
2007-01-30 11:35:17 -05:00
|
|
|
int TryCompileTimeout;
|
2010-11-11 22:02:07 +01:00
|
|
|
|
2011-03-26 14:52:19 +01:00
|
|
|
bool GetForceUnixPaths() const { return this->ForceUnixPaths; }
|
|
|
|
bool GetToolSupportsColor() const { return this->ToolSupportsColor; }
|
2007-06-08 11:57:16 -04:00
|
|
|
|
2004-09-03 12:03:41 -04:00
|
|
|
///! return the language for the given extension
|
|
|
|
const char* GetLanguageFromExtension(const char* ext);
|
2004-09-22 14:42:05 -04:00
|
|
|
///! is an extension to be ignored
|
|
|
|
bool IgnoreFile(const char* ext);
|
|
|
|
///! What is the preference for linkers and this language (None or Prefered)
|
2007-07-12 08:37:10 -04:00
|
|
|
int GetLinkerPreference(const char* lang);
|
2007-06-18 11:59:23 -04:00
|
|
|
///! What is the object file extension for a given source file?
|
|
|
|
const char* GetLanguageOutputExtension(cmSourceFile const&);
|
2005-02-24 16:04:54 -05:00
|
|
|
|
2006-02-24 17:35:35 -05:00
|
|
|
///! What is the configurations directory variable called?
|
2012-03-08 16:18:55 -05:00
|
|
|
virtual const char* GetCMakeCFGIntDir() const { return "."; }
|
2006-02-24 17:35:35 -05:00
|
|
|
|
2006-06-15 16:17:11 -04:00
|
|
|
/** Get whether the generator should use a script for link commands. */
|
2011-03-26 14:52:19 +01:00
|
|
|
bool GetUseLinkScript() const { return this->UseLinkScript; }
|
2006-06-15 16:17:11 -04:00
|
|
|
|
2006-10-02 10:20:53 -04:00
|
|
|
/** Get whether the generator should produce special marks on rules
|
|
|
|
producing symbolic (non-file) outputs. */
|
2011-03-26 14:52:19 +01:00
|
|
|
bool GetNeedSymbolicMark() const { return this->NeedSymbolicMark; }
|
2006-10-02 10:20:53 -04:00
|
|
|
|
2005-05-02 15:50:42 -04:00
|
|
|
/*
|
|
|
|
* Determine what program to use for building the project.
|
|
|
|
*/
|
2013-11-15 10:41:45 -05:00
|
|
|
virtual void FindMakeProgram(cmMakefile*);
|
2005-05-02 15:50:42 -04:00
|
|
|
|
2005-06-20 14:00:48 -04:00
|
|
|
///! Find a target by name by searching the local generators.
|
2013-07-12 09:14:31 +02:00
|
|
|
cmTarget* FindTarget(const char* project, const char* name,
|
2013-11-19 11:48:19 +01:00
|
|
|
bool excludeAliases = false) const;
|
2013-07-12 09:14:31 +02:00
|
|
|
|
|
|
|
void AddAlias(const char *name, cmTarget *tgt);
|
2013-11-19 11:32:30 +01:00
|
|
|
bool IsAlias(const char *name) const;
|
2005-06-20 14:00:48 -04:00
|
|
|
|
2007-10-10 11:06:15 -04:00
|
|
|
/** Determine if a name resolves to a framework on disk or a built target
|
|
|
|
that is a framework. */
|
2013-11-19 11:48:19 +01:00
|
|
|
bool NameResolvesToFramework(const std::string& libname) const;
|
2007-10-10 11:06:15 -04:00
|
|
|
|
2006-11-09 09:57:23 -05:00
|
|
|
/** If check to see if the target is linked to by any other
|
|
|
|
target in the project */
|
|
|
|
bool IsDependedOn(const char* project, cmTarget* target);
|
2005-09-13 10:39:42 -04:00
|
|
|
///! Find a local generator by its startdirectory
|
|
|
|
cmLocalGenerator* FindLocalGenerator(const char* start_dir);
|
|
|
|
|
2006-03-03 12:58:48 -05:00
|
|
|
/** Append the subdirectory for the given configuration. If anything is
|
|
|
|
appended the given prefix and suffix will be appended around it, which
|
|
|
|
is useful for leading or trailing slashes. */
|
|
|
|
virtual void AppendDirectoryForConfig(const char* prefix,
|
|
|
|
const char* config,
|
|
|
|
const char* suffix,
|
|
|
|
std::string& dir);
|
2006-02-03 11:36:11 -05:00
|
|
|
|
2006-04-04 11:48:19 -04:00
|
|
|
/** Get the manifest of all targets that will be built for each
|
|
|
|
configuration. This is valid during generation only. */
|
2011-10-10 09:44:33 -04:00
|
|
|
cmTargetManifest const& GetTargetManifest() const
|
2012-09-15 21:12:59 +02:00
|
|
|
{ return this->TargetManifest; }
|
2006-04-04 11:48:19 -04:00
|
|
|
|
2008-09-22 10:56:48 -04:00
|
|
|
/** Get the content of a directory. Directory listings are loaded
|
|
|
|
from disk at most once and cached. During the generation step
|
|
|
|
the content will include the target files to be built even if
|
|
|
|
they do not yet exist. */
|
2008-01-22 09:13:04 -05:00
|
|
|
std::set<cmStdString> const& GetDirectoryContent(std::string const& dir,
|
2008-09-22 10:56:48 -04:00
|
|
|
bool needDisk = true);
|
2008-01-22 09:13:04 -05:00
|
|
|
|
2012-01-25 13:39:26 -05:00
|
|
|
void AddTarget(cmTarget* t);
|
2007-05-22 10:24:59 -04:00
|
|
|
|
2013-11-16 11:07:24 +01:00
|
|
|
static bool IsReservedTarget(std::string const& name);
|
|
|
|
|
2011-10-10 09:44:33 -04:00
|
|
|
virtual const char* GetAllTargetName() const { return "ALL_BUILD"; }
|
2011-03-26 14:52:19 +01:00
|
|
|
virtual const char* GetInstallTargetName() const { return "INSTALL"; }
|
|
|
|
virtual const char* GetInstallLocalTargetName() const { return 0; }
|
|
|
|
virtual const char* GetInstallStripTargetName() const { return 0; }
|
|
|
|
virtual const char* GetPreinstallTargetName() const { return 0; }
|
2011-10-10 09:44:33 -04:00
|
|
|
virtual const char* GetTestTargetName() const { return "RUN_TESTS"; }
|
2011-03-26 14:52:19 +01:00
|
|
|
virtual const char* GetPackageTargetName() const { return "PACKAGE"; }
|
|
|
|
virtual const char* GetPackageSourceTargetName() const { return 0; }
|
|
|
|
virtual const char* GetEditCacheTargetName() const { return 0; }
|
|
|
|
virtual const char* GetRebuildCacheTargetName() const { return 0; }
|
|
|
|
virtual const char* GetCleanTargetName() const { return 0; }
|
2006-04-10 13:44:39 -04:00
|
|
|
|
2013-11-12 08:44:08 -05:00
|
|
|
// Lookup edit_cache target command preferred by this generator.
|
|
|
|
virtual std::string GetEditCacheCommand() const { return ""; }
|
|
|
|
|
2007-12-23 15:03:42 -05:00
|
|
|
// Class to track a set of dependencies.
|
2010-08-25 10:07:25 -04:00
|
|
|
typedef cmTargetDependSet TargetDependSet;
|
2007-12-23 15:03:42 -05:00
|
|
|
|
2008-01-30 12:04:38 -05:00
|
|
|
// what targets does the specified target depend on directly
|
|
|
|
// via a target_link_libraries or add_dependencies
|
2010-08-20 13:16:43 -04:00
|
|
|
TargetDependSet const& GetTargetDirectDepends(cmTarget & target);
|
2007-04-12 15:46:14 -04:00
|
|
|
|
2012-03-07 11:50:41 -05:00
|
|
|
/** Get per-target generator information. */
|
|
|
|
cmGeneratorTarget* GetGeneratorTarget(cmTarget*) const;
|
|
|
|
|
2007-07-20 08:36:16 -04:00
|
|
|
const std::map<cmStdString, std::vector<cmLocalGenerator*> >& GetProjectMap()
|
|
|
|
const {return this->ProjectMap;}
|
2007-11-16 07:01:58 -05:00
|
|
|
|
|
|
|
// track files replaced during a Generate
|
|
|
|
void FileReplacedDuringGenerate(const std::string& filename);
|
|
|
|
void GetFilesReplacedDuringGenerate(std::vector<std::string>& filenames);
|
|
|
|
|
2008-06-02 16:44:58 -04:00
|
|
|
void AddRuleHash(const std::vector<std::string>& outputs,
|
2009-02-02 13:28:12 -05:00
|
|
|
std::string const& content);
|
2008-06-02 16:44:58 -04:00
|
|
|
|
2009-02-27 11:23:14 -05:00
|
|
|
/** Return whether the given binary directory is unused. */
|
|
|
|
bool BinaryDirectoryIsNew(const char* dir)
|
|
|
|
{
|
|
|
|
return this->BinaryDirectories.insert(dir).second;
|
2010-11-11 22:02:07 +01:00
|
|
|
}
|
2009-07-17 10:05:54 -04:00
|
|
|
/** Supported systems creates a GUID for the given name */
|
|
|
|
virtual void CreateGUID(const char*) {}
|
2009-02-27 11:23:14 -05:00
|
|
|
|
2009-12-04 12:09:01 -05:00
|
|
|
/** Return true if the generated build tree may contain multiple builds.
|
|
|
|
i.e. "Can I build Debug and Release in the same tree?" */
|
|
|
|
virtual bool IsMultiConfig() { return false; }
|
|
|
|
|
2012-05-30 14:13:09 -04:00
|
|
|
std::string GetSharedLibFlagsForLanguage(std::string const& lang);
|
|
|
|
|
2012-04-18 15:28:12 -04:00
|
|
|
/** Generate an <output>.rule file path for a given command output. */
|
|
|
|
virtual std::string GenerateRuleFile(std::string const& output) const;
|
|
|
|
|
2012-05-06 15:07:19 +02:00
|
|
|
static std::string EscapeJSON(const std::string& s);
|
|
|
|
|
2013-01-02 17:10:04 +01:00
|
|
|
void AddEvaluationFile(const std::string &inputFile,
|
|
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> outputName,
|
|
|
|
cmMakefile *makefile,
|
|
|
|
cmsys::auto_ptr<cmCompiledGeneratorExpression> condition,
|
|
|
|
bool inputIsContent);
|
|
|
|
|
|
|
|
void ProcessEvaluationFiles();
|
|
|
|
|
2012-10-06 17:27:40 +02:00
|
|
|
std::map<std::string, cmExportBuildFileGenerator*>& GetBuildExportSets()
|
|
|
|
{return this->BuildExportSets;}
|
|
|
|
void AddBuildExportSet(cmExportBuildFileGenerator*);
|
|
|
|
bool IsExportedTargetsFile(const std::string &filename) const;
|
|
|
|
bool GenerateImportFile(const std::string &file);
|
|
|
|
cmExportBuildFileGenerator*
|
|
|
|
GetExportedTargetsFile(const std::string &filename) const;
|
2002-08-30 16:00:35 -04:00
|
|
|
protected:
|
2009-10-01 10:26:54 -04:00
|
|
|
typedef std::vector<cmLocalGenerator*> GeneratorVector;
|
2008-01-30 12:04:38 -05:00
|
|
|
// for a project collect all its targets by following depend
|
|
|
|
// information, and also collect all the targets
|
2009-10-01 10:26:54 -04:00
|
|
|
virtual void GetTargetSets(TargetDependSet& projectTargets,
|
|
|
|
TargetDependSet& originalTargets,
|
|
|
|
cmLocalGenerator* root, GeneratorVector const&);
|
2009-10-06 13:30:00 -04:00
|
|
|
virtual bool IsRootOnlyTarget(cmTarget* target);
|
2009-10-01 10:26:54 -04:00
|
|
|
void AddTargetDepends(cmTarget* target, TargetDependSet& projectTargets);
|
2007-06-11 15:31:42 -04:00
|
|
|
void SetLanguageEnabledFlag(const char* l, cmMakefile* mf);
|
|
|
|
void SetLanguageEnabledMaps(const char* l, cmMakefile* mf);
|
2008-07-16 11:03:58 -04:00
|
|
|
void FillExtensionToLanguageMap(const char* l, cmMakefile* mf);
|
2007-06-11 15:31:42 -04:00
|
|
|
|
2010-08-24 18:12:44 -04:00
|
|
|
virtual bool ComputeTargetDepends();
|
|
|
|
|
2008-02-14 16:42:29 -05:00
|
|
|
virtual bool CheckALLOW_DUPLICATE_CUSTOM_TARGETS();
|
|
|
|
|
2008-05-12 17:43:45 -04:00
|
|
|
bool CheckTargets();
|
2013-11-04 10:34:54 +01:00
|
|
|
typedef std::vector<std::pair<cmQtAutoGenerators, cmTarget*> > AutogensType;
|
|
|
|
void CreateQtAutoGeneratorsTargets(AutogensType& autogens);
|
2011-08-16 01:45:05 +02:00
|
|
|
|
2013-11-13 15:12:06 -05:00
|
|
|
std::string SelectMakeProgram(const char* makeProgram,
|
|
|
|
std::string makeDefault = "");
|
2008-05-12 17:43:45 -04:00
|
|
|
|
2010-11-11 22:02:07 +01:00
|
|
|
// Fill the ProjectMap, this must be called after LocalGenerators
|
2006-03-10 13:54:57 -05:00
|
|
|
// has been populated.
|
2005-01-21 12:26:32 -05:00
|
|
|
void FillProjectMap();
|
2007-08-16 15:33:17 -04:00
|
|
|
void CheckLocalGenerators();
|
2004-03-09 16:28:44 -05:00
|
|
|
bool IsExcluded(cmLocalGenerator* root, cmLocalGenerator* gen);
|
2007-08-03 15:44:25 -04:00
|
|
|
bool IsExcluded(cmLocalGenerator* root, cmTarget& target);
|
|
|
|
void FillLocalGeneratorToTargetMap();
|
2006-02-23 10:07:24 -05:00
|
|
|
void CreateDefaultGlobalTargets(cmTargets* targets);
|
|
|
|
cmTarget CreateGlobalTarget(const char* name, const char* message,
|
|
|
|
const cmCustomCommandLines* commandLines,
|
2010-12-13 11:23:38 -05:00
|
|
|
std::vector<std::string> depends, const char* workingDir);
|
2006-02-23 10:07:24 -05:00
|
|
|
|
2006-10-02 10:20:53 -04:00
|
|
|
bool NeedSymbolicMark;
|
2006-06-15 16:17:11 -04:00
|
|
|
bool UseLinkScript;
|
2006-03-15 11:02:08 -05:00
|
|
|
bool ForceUnixPaths;
|
2006-04-26 21:31:39 -04:00
|
|
|
bool ToolSupportsColor;
|
2006-03-15 11:02:08 -05:00
|
|
|
cmStdString FindMakeProgramFile;
|
|
|
|
cmStdString ConfiguredFilesPath;
|
|
|
|
cmake *CMakeInstance;
|
|
|
|
std::vector<cmLocalGenerator *> LocalGenerators;
|
2007-07-17 09:25:08 -04:00
|
|
|
cmLocalGenerator* CurrentLocalGenerator;
|
2005-01-21 12:26:32 -05:00
|
|
|
// map from project name to vector of local generators in that project
|
2006-03-15 11:02:08 -05:00
|
|
|
std::map<cmStdString, std::vector<cmLocalGenerator*> > ProjectMap;
|
2012-09-15 21:12:59 +02:00
|
|
|
std::map<cmLocalGenerator*, std::set<cmTarget *> > LocalGeneratorToTargetMap;
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2006-03-30 13:33:48 -05:00
|
|
|
// Set of named installation components requested by the project.
|
|
|
|
std::set<cmStdString> InstallComponents;
|
2006-08-31 10:47:00 -04:00
|
|
|
bool InstallTargetEnabled;
|
2007-06-19 13:10:21 -04:00
|
|
|
// Sets of named target exports
|
2012-03-01 02:02:56 +04:00
|
|
|
cmExportSetMap ExportSets;
|
2012-10-06 17:27:40 +02:00
|
|
|
std::map<std::string, cmExportBuildFileGenerator*> BuildExportSets;
|
2006-03-30 13:33:48 -05:00
|
|
|
|
2006-04-04 11:48:19 -04:00
|
|
|
// Manifest of all targets that will be built for each configuration.
|
|
|
|
// This is computed just before local generators generate.
|
|
|
|
cmTargetManifest TargetManifest;
|
|
|
|
|
2009-07-10 16:51:44 -04:00
|
|
|
// All targets in the entire project.
|
|
|
|
std::map<cmStdString,cmTarget *> TotalTargets;
|
2013-07-12 09:14:31 +02:00
|
|
|
std::map<cmStdString,cmTarget *> AliasTargets;
|
2012-01-25 13:39:26 -05:00
|
|
|
std::map<cmStdString,cmTarget *> ImportedTargets;
|
2013-01-02 17:10:04 +01:00
|
|
|
std::vector<cmGeneratorExpressionEvaluationFile*> EvaluationFiles;
|
2009-07-10 16:51:44 -04:00
|
|
|
|
2010-09-03 13:53:22 -04:00
|
|
|
virtual const char* GetPredefinedTargetsFolder();
|
|
|
|
virtual bool UseFolderProperty();
|
2013-03-09 11:16:39 +01:00
|
|
|
void EnableMinGWLanguage(cmMakefile *mf);
|
2010-09-03 13:53:22 -04:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
private:
|
2011-01-24 10:00:45 -05:00
|
|
|
cmMakefile* TryCompileOuterMakefile;
|
2007-11-12 22:33:00 -05:00
|
|
|
float FirstTimeProgress;
|
2004-09-22 14:42:05 -04:00
|
|
|
// If you add a new map here, make sure it is copied
|
2010-11-11 22:02:07 +01:00
|
|
|
// in EnableLanguagesFromGenerator
|
2006-03-15 11:02:08 -05:00
|
|
|
std::map<cmStdString, bool> IgnoreExtensions;
|
|
|
|
std::map<cmStdString, bool> LanguageEnabled;
|
2011-01-24 10:00:45 -05:00
|
|
|
std::set<cmStdString> LanguagesReady; // Ready for try_compile
|
2006-03-15 11:02:08 -05:00
|
|
|
std::map<cmStdString, cmStdString> OutputExtensions;
|
|
|
|
std::map<cmStdString, cmStdString> LanguageToOutputExtension;
|
|
|
|
std::map<cmStdString, cmStdString> ExtensionToLanguage;
|
2010-11-11 22:02:07 +01:00
|
|
|
std::map<cmStdString, int> LanguageToLinkerPreference;
|
2012-05-30 14:13:09 -04:00
|
|
|
std::map<cmStdString, cmStdString> LanguageToOriginalSharedLibFlags;
|
2005-02-24 16:04:54 -05:00
|
|
|
|
2008-06-02 16:44:58 -04:00
|
|
|
// Record hashes for rules and outputs.
|
|
|
|
struct RuleHash { char Data[32]; };
|
|
|
|
std::map<cmStdString, RuleHash> RuleHashes;
|
|
|
|
void CheckRuleHashes();
|
2010-02-12 08:00:53 -05:00
|
|
|
void CheckRuleHashes(std::string const& pfile, std::string const& home);
|
|
|
|
void WriteRuleHashes(std::string const& pfile);
|
2008-06-02 16:44:58 -04:00
|
|
|
|
2009-03-09 12:19:27 -04:00
|
|
|
void WriteSummary();
|
|
|
|
void WriteSummary(cmTarget* target);
|
2013-11-07 14:09:04 +01:00
|
|
|
void FinalizeTargetCompileInfo();
|
2009-02-10 08:50:21 -05:00
|
|
|
|
2013-10-24 13:04:24 -04:00
|
|
|
virtual void PrintCompilerAdvice(std::ostream& os, std::string lang,
|
|
|
|
const char* envVar);
|
2013-10-02 14:10:38 -04:00
|
|
|
void CheckCompilerIdCompatibility(cmMakefile* mf, std::string lang);
|
|
|
|
|
2007-06-08 11:57:16 -04:00
|
|
|
cmExternalMakefileProjectGenerator* ExtraGenerator;
|
2007-11-16 07:01:58 -05:00
|
|
|
|
|
|
|
// track files replaced during a Generate
|
|
|
|
std::vector<std::string> FilesReplacedDuringGenerate;
|
2007-12-23 15:03:42 -05:00
|
|
|
|
2008-02-05 23:10:41 -05:00
|
|
|
// Store computed inter-target dependencies.
|
2008-01-30 22:56:34 -05:00
|
|
|
typedef std::map<cmTarget *, TargetDependSet> TargetDependMap;
|
2007-12-23 15:03:42 -05:00
|
|
|
TargetDependMap TargetDependencies;
|
2008-01-22 09:13:04 -05:00
|
|
|
|
2012-03-07 11:50:41 -05:00
|
|
|
// Per-target generator information.
|
2012-09-13 00:03:23 +02:00
|
|
|
cmGeneratorTargetsType GeneratorTargets;
|
2012-03-07 11:50:41 -05:00
|
|
|
void CreateGeneratorTargets();
|
2012-10-06 18:35:37 +02:00
|
|
|
void ComputeGeneratorTargetObjects();
|
2012-03-07 14:01:46 -05:00
|
|
|
virtual void ComputeTargetObjects(cmGeneratorTarget* gt) const;
|
2012-03-07 11:50:41 -05:00
|
|
|
|
2013-11-04 16:06:51 -05:00
|
|
|
void ClearGeneratorMembers();
|
|
|
|
|
2013-11-13 15:59:32 -05:00
|
|
|
virtual const char* GetBuildIgnoreErrorsFlag() const { return 0; }
|
|
|
|
|
2008-01-22 09:13:04 -05:00
|
|
|
// Cache directory content and target files to be built.
|
|
|
|
struct DirectoryContent: public std::set<cmStdString>
|
|
|
|
{
|
|
|
|
typedef std::set<cmStdString> derived;
|
|
|
|
bool LoadedFromDisk;
|
|
|
|
DirectoryContent(): LoadedFromDisk(false) {}
|
|
|
|
DirectoryContent(DirectoryContent const& dc):
|
|
|
|
derived(dc), LoadedFromDisk(dc.LoadedFromDisk) {}
|
|
|
|
};
|
|
|
|
std::map<cmStdString, DirectoryContent> DirectoryContentMap;
|
2009-02-27 11:23:14 -05:00
|
|
|
|
|
|
|
// Set of binary directories on disk.
|
|
|
|
std::set<cmStdString> BinaryDirectories;
|
2002-08-30 16:00:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|