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