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 cmLocalGenerator_h
|
|
|
|
#define cmLocalGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
2016-04-29 09:40:20 -04:00
|
|
|
|
2016-04-29 10:53:13 -04:00
|
|
|
#include "cmOutputConverter.h"
|
2015-05-03 16:51:51 +02:00
|
|
|
#include "cmState.h"
|
2015-06-13 19:32:46 +02:00
|
|
|
#include "cmake.h"
|
2002-08-30 16:00:35 -04:00
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmGlobalGenerator;
|
2012-09-16 01:16:43 +02:00
|
|
|
class cmGeneratorTarget;
|
2006-04-04 11:48:19 -04:00
|
|
|
class cmTargetManifest;
|
2004-10-21 14:34:02 -04:00
|
|
|
class cmSourceFile;
|
2006-04-11 11:06:19 -04:00
|
|
|
class cmCustomCommand;
|
2014-03-10 15:47:19 -04:00
|
|
|
class cmCustomCommandGenerator;
|
2002-08-30 16:00:35 -04:00
|
|
|
|
|
|
|
/** \class cmLocalGenerator
|
|
|
|
* \brief Create required build files for a directory.
|
|
|
|
*
|
|
|
|
* Subclasses of this abstract class generate makefiles, DSP, etc for various
|
2011-03-19 11:41:00 +01:00
|
|
|
* platforms. This class should never be constructed directly. A
|
2002-08-30 16:00:35 -04:00
|
|
|
* GlobalGenerator will create it and invoke the appropriate commands on it.
|
|
|
|
*/
|
2015-04-12 13:15:51 +02:00
|
|
|
class cmLocalGenerator : public cmOutputConverter
|
2002-08-30 16:00:35 -04:00
|
|
|
{
|
|
|
|
public:
|
2015-08-02 11:41:51 +02:00
|
|
|
cmLocalGenerator(cmGlobalGenerator* gg, cmMakefile* makefile);
|
2002-09-05 09:04:55 -04:00
|
|
|
virtual ~cmLocalGenerator();
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
/**
|
2011-10-13 19:51:18 +02:00
|
|
|
* Generate the makefile for this directory.
|
2002-08-30 16:00:35 -04:00
|
|
|
*/
|
2007-05-09 08:25:45 -04:00
|
|
|
virtual void Generate() {}
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2015-06-13 08:38:27 +02:00
|
|
|
virtual void ComputeHomeRelativeOutputPath() {}
|
|
|
|
|
2011-10-13 19:51:18 +02:00
|
|
|
/**
|
2007-05-09 08:25:45 -04:00
|
|
|
* Calls TraceVSDependencies() on all targets of this generator.
|
|
|
|
*/
|
2013-02-20 19:48:39 +01:00
|
|
|
void TraceDependencies();
|
2007-05-09 14:41:38 -04:00
|
|
|
|
|
|
|
virtual void AddHelperCommands() {}
|
|
|
|
|
2004-01-25 19:25:26 -05:00
|
|
|
/**
|
|
|
|
* Generate the install rules files in this directory.
|
|
|
|
*/
|
2013-02-20 19:48:39 +01:00
|
|
|
void GenerateInstallRules();
|
2004-01-25 19:25:26 -05:00
|
|
|
|
2005-04-24 15:59:51 -04:00
|
|
|
/**
|
|
|
|
* Generate the test files for tests.
|
|
|
|
*/
|
2013-02-20 19:48:39 +01:00
|
|
|
void GenerateTestFiles();
|
2006-04-04 11:48:19 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a manifest of target files that will be built.
|
|
|
|
*/
|
2015-08-25 08:25:12 +02:00
|
|
|
void ComputeTargetManifest();
|
2005-04-24 15:59:51 -04:00
|
|
|
|
2015-10-23 01:17:32 +02:00
|
|
|
bool IsRootMakefile() const;
|
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
///! Get the makefile for this generator
|
2016-05-16 10:34:04 -04:00
|
|
|
cmMakefile* GetMakefile() { return this->Makefile; }
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2007-06-15 10:10:24 -04:00
|
|
|
///! Get the makefile for this generator, const version
|
2016-05-16 10:34:04 -04:00
|
|
|
const cmMakefile* GetMakefile() const { return this->Makefile; }
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
///! Get the GlobalGenerator this is associated with
|
2016-05-16 10:34:04 -04:00
|
|
|
cmGlobalGenerator* GetGlobalGenerator() { return this->GlobalGenerator; }
|
|
|
|
const cmGlobalGenerator* GetGlobalGenerator() const
|
|
|
|
{
|
|
|
|
return this->GlobalGenerator;
|
|
|
|
}
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2015-05-03 16:51:51 +02:00
|
|
|
cmState* GetState() const;
|
|
|
|
cmState::Snapshot GetStateSnapshot() const;
|
|
|
|
|
2015-03-29 20:56:21 -06:00
|
|
|
void AddArchitectureFlags(std::string& flags,
|
|
|
|
cmGeneratorTarget const* target,
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::string& lang,
|
|
|
|
const std::string& config);
|
2009-10-21 13:00:49 -04:00
|
|
|
|
2014-02-03 21:20:56 -05:00
|
|
|
void AddLanguageFlags(std::string& flags, const std::string& lang,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& config);
|
2016-05-16 10:34:04 -04:00
|
|
|
void AddCMP0018Flags(std::string& flags, cmGeneratorTarget const* target,
|
2014-02-09 22:48:34 -05:00
|
|
|
std::string const& lang, const std::string& config);
|
2016-05-16 10:34:04 -04:00
|
|
|
void AddVisibilityPresetFlags(std::string& flags,
|
2015-10-09 22:19:57 +02:00
|
|
|
cmGeneratorTarget const* target,
|
2014-02-03 21:20:56 -05:00
|
|
|
const std::string& lang);
|
2014-02-04 16:06:56 -05:00
|
|
|
void AddConfigVariableFlags(std::string& flags, const std::string& var,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& config);
|
2016-05-16 10:34:04 -04:00
|
|
|
void AddCompilerRequirementFlag(std::string& flags,
|
2015-10-09 22:19:57 +02:00
|
|
|
cmGeneratorTarget const* target,
|
2013-10-13 02:00:24 +02:00
|
|
|
const std::string& lang);
|
2011-03-20 12:16:43 +01:00
|
|
|
///! Append flags to a string.
|
2014-05-01 16:07:26 -04:00
|
|
|
virtual void AppendFlags(std::string& flags, const std::string& newFlags);
|
2007-05-10 14:43:55 -04:00
|
|
|
virtual void AppendFlags(std::string& flags, const char* newFlags);
|
2014-02-08 00:29:59 -05:00
|
|
|
virtual void AppendFlagEscape(std::string& flags,
|
|
|
|
const std::string& rawFlag);
|
2005-02-03 17:42:55 -05:00
|
|
|
///! Get the include flags for the current makefile and language
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string GetIncludeFlags(const std::vector<std::string>& includes,
|
2013-07-01 22:28:26 +02:00
|
|
|
cmGeneratorTarget* target,
|
2014-02-03 21:20:56 -05:00
|
|
|
const std::string& lang,
|
2014-10-10 09:57:07 -04:00
|
|
|
bool forceFullPaths = false,
|
2014-02-03 21:20:56 -05:00
|
|
|
bool forResponseFile = false,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& config = "");
|
2005-02-02 13:19:57 -05:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::vector<cmGeneratorTarget*>& GetGeneratorTargets() const
|
|
|
|
{
|
|
|
|
return this->GeneratorTargets;
|
|
|
|
}
|
2015-09-16 05:21:07 +02:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::vector<cmGeneratorTarget*>& GetImportedGeneratorTargets() const
|
|
|
|
{
|
|
|
|
return this->ImportedGeneratorTargets;
|
|
|
|
}
|
2015-10-25 13:14:44 +01:00
|
|
|
|
2015-10-18 16:53:00 +02:00
|
|
|
void AddGeneratorTarget(cmGeneratorTarget* gt);
|
2015-10-25 12:56:31 +01:00
|
|
|
void AddImportedGeneratorTarget(cmGeneratorTarget* gt);
|
2015-10-25 13:22:42 +01:00
|
|
|
void AddOwnedImportedGeneratorTarget(cmGeneratorTarget* gt);
|
2015-09-16 05:21:07 +02:00
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
cmGeneratorTarget* FindLocalNonAliasGeneratorTarget(
|
|
|
|
const std::string& name) const;
|
2015-09-16 05:21:07 +02:00
|
|
|
cmGeneratorTarget* FindGeneratorTargetToUse(const std::string& name) const;
|
|
|
|
|
2008-01-14 09:20:58 -05:00
|
|
|
/**
|
|
|
|
* Encode a list of preprocessor definitions for the compiler
|
|
|
|
* command line.
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
void AppendDefines(std::set<std::string>& defines, const char* defines_list);
|
|
|
|
void AppendDefines(std::set<std::string>& defines, std::string defines_list)
|
2012-09-20 23:24:20 +02:00
|
|
|
{
|
|
|
|
this->AppendDefines(defines, defines_list.c_str());
|
|
|
|
}
|
2013-06-06 18:17:10 +02:00
|
|
|
void AppendDefines(std::set<std::string>& defines,
|
2016-05-16 10:34:04 -04:00
|
|
|
const std::vector<std::string>& defines_vec);
|
2013-06-06 18:17:10 +02:00
|
|
|
|
2012-08-09 09:44:15 +02:00
|
|
|
/**
|
|
|
|
* Join a set of defines into a definesString with a space separator.
|
|
|
|
*/
|
|
|
|
void JoinDefines(const std::set<std::string>& defines,
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string& definesString, const std::string& lang);
|
2008-01-14 09:20:58 -05:00
|
|
|
|
2009-10-02 13:52:01 -04:00
|
|
|
/** Lookup and append options associated with a particular feature. */
|
2014-02-03 21:20:56 -05:00
|
|
|
void AppendFeatureOptions(std::string& flags, const std::string& lang,
|
2009-10-02 13:52:01 -04:00
|
|
|
const char* feature);
|
|
|
|
|
2015-06-06 15:42:31 +02:00
|
|
|
const char* GetFeature(const std::string& feature,
|
|
|
|
const std::string& config);
|
|
|
|
|
2012-02-25 13:16:07 +04:00
|
|
|
/** \brief Get absolute path to dependency \a name
|
|
|
|
*
|
|
|
|
* Translate a dependency as given in CMake code to the name to
|
|
|
|
* appear in a generated build file.
|
|
|
|
* - If \a name is a utility target, returns false.
|
|
|
|
* - If \a name is a CMake target, it will be transformed to the real output
|
|
|
|
* location of that target for the given configuration.
|
|
|
|
* - If \a name is the full path to a file, it will be returned.
|
|
|
|
* - Otherwise \a name is treated as a relative path with respect to
|
|
|
|
* the source directory of this generator. This should only be
|
|
|
|
* used for dependencies of custom commands.
|
|
|
|
*/
|
2014-02-09 22:48:34 -05:00
|
|
|
bool GetRealDependency(const std::string& name, const std::string& config,
|
2010-12-08 16:51:16 -05:00
|
|
|
std::string& dep);
|
|
|
|
|
2016-05-19 23:11:40 +02:00
|
|
|
virtual std::string ConvertToIncludeReference(
|
|
|
|
std::string const& path,
|
|
|
|
cmOutputConverter::OutputFormat format = cmOutputConverter::SHELL,
|
|
|
|
bool forceFullPaths = false);
|
2011-09-07 02:41:41 +01:00
|
|
|
|
2007-12-19 16:36:30 -05:00
|
|
|
/** Called from command-line hook to clear dependencies. */
|
2016-05-16 10:34:04 -04:00
|
|
|
virtual void ClearDependencies(cmMakefile* /* mf */, bool /* verbose */) {}
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2007-12-19 16:36:30 -05:00
|
|
|
/** Called from command-line hook to update dependencies. */
|
2016-05-16 10:34:04 -04:00
|
|
|
virtual bool UpdateDependencies(const char* /* tgtInfo */, bool /*verbose*/,
|
2007-12-19 17:15:41 -05:00
|
|
|
bool /*color*/)
|
2016-05-16 10:34:04 -04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2005-05-12 10:49:56 -04:00
|
|
|
|
2006-02-20 09:54:25 -05:00
|
|
|
/** Get the include flags for the current makefile and language. */
|
2009-02-26 09:16:16 -05:00
|
|
|
void GetIncludeDirectories(std::vector<std::string>& dirs,
|
2015-10-05 19:15:56 +02:00
|
|
|
cmGeneratorTarget const* target,
|
2014-02-03 21:20:56 -05:00
|
|
|
const std::string& lang = "C",
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& config = "",
|
2015-06-06 12:57:19 +02:00
|
|
|
bool stripImplicitInclDirs = true) const;
|
2015-10-09 22:19:57 +02:00
|
|
|
void AddCompileOptions(std::string& flags, cmGeneratorTarget* target,
|
2014-02-09 22:48:34 -05:00
|
|
|
const std::string& lang, const std::string& config);
|
2013-12-10 15:44:56 +01:00
|
|
|
void AddCompileDefinitions(std::set<std::string>& defines,
|
2015-10-09 22:19:57 +02:00
|
|
|
cmGeneratorTarget const* target,
|
2015-03-04 21:46:42 +01:00
|
|
|
const std::string& config,
|
|
|
|
const std::string& lang);
|
2006-02-20 09:54:25 -05:00
|
|
|
|
2015-10-07 00:29:25 +02:00
|
|
|
std::string GetProjectName() const;
|
|
|
|
|
2006-08-03 09:26:07 -04:00
|
|
|
/** Compute the language used to compile the given source file. */
|
2014-02-03 21:20:56 -05:00
|
|
|
std::string GetSourceFileLanguage(const cmSourceFile& source);
|
2006-08-03 09:26:07 -04:00
|
|
|
|
2012-06-15 12:14:13 +02:00
|
|
|
// Fill the vector with the target names for the object files,
|
|
|
|
// preprocessed files and assembly files.
|
2015-10-07 00:37:47 +02:00
|
|
|
void GetIndividualFileTargets(std::vector<std::string>&) {}
|
2012-06-15 12:14:13 +02:00
|
|
|
|
2006-02-20 13:42:18 -05:00
|
|
|
// Create a struct to hold the varibles passed into
|
|
|
|
// ExpandRuleVariables
|
|
|
|
struct RuleVariables
|
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
RuleVariables() { memset(this, 0, sizeof(*this)); }
|
2015-10-09 22:19:57 +02:00
|
|
|
cmGeneratorTarget* CMTarget;
|
2006-04-19 16:36:14 -04:00
|
|
|
const char* TargetPDB;
|
2014-02-24 14:15:21 -05:00
|
|
|
const char* TargetCompilePDB;
|
2006-10-16 18:17:14 -04:00
|
|
|
const char* TargetVersionMajor;
|
|
|
|
const char* TargetVersionMinor;
|
2006-02-20 13:42:18 -05:00
|
|
|
const char* Language;
|
|
|
|
const char* Objects;
|
|
|
|
const char* Target;
|
|
|
|
const char* LinkLibraries;
|
|
|
|
const char* Source;
|
2006-08-07 23:25:21 -04:00
|
|
|
const char* AssemblySource;
|
|
|
|
const char* PreprocessedSource;
|
2009-02-10 08:52:07 -05:00
|
|
|
const char* Output;
|
2006-02-20 13:42:18 -05:00
|
|
|
const char* Object;
|
2006-04-17 14:01:22 -04:00
|
|
|
const char* ObjectDir;
|
2014-06-05 08:57:17 -04:00
|
|
|
const char* ObjectFileDir;
|
2006-02-20 13:42:18 -05:00
|
|
|
const char* Flags;
|
|
|
|
const char* ObjectsQuoted;
|
2012-04-22 16:42:55 +03:00
|
|
|
const char* SONameFlag;
|
2006-02-20 13:42:18 -05:00
|
|
|
const char* TargetSOName;
|
2006-02-24 13:13:14 -05:00
|
|
|
const char* TargetInstallNameDir;
|
2006-02-20 13:42:18 -05:00
|
|
|
const char* LinkFlags;
|
2015-09-16 10:24:16 -04:00
|
|
|
const char* Manifests;
|
2006-03-06 15:14:23 -05:00
|
|
|
const char* LanguageCompileFlags;
|
2008-01-14 09:20:58 -05:00
|
|
|
const char* Defines;
|
2015-07-13 10:35:04 -04:00
|
|
|
const char* Includes;
|
2009-02-10 08:51:15 -05:00
|
|
|
const char* RuleLauncher;
|
2012-06-13 00:52:46 +02:00
|
|
|
const char* DependencyFile;
|
2013-12-01 23:16:06 +01:00
|
|
|
const char* FilterPrefix;
|
2006-02-20 13:42:18 -05:00
|
|
|
};
|
2006-02-20 14:37:24 -05:00
|
|
|
|
2007-08-01 15:25:40 -04:00
|
|
|
/**
|
|
|
|
* Get the relative path from the generator output directory to a
|
|
|
|
* per-target support directory.
|
|
|
|
*/
|
2016-05-16 10:34:04 -04:00
|
|
|
virtual std::string GetTargetDirectory(
|
|
|
|
cmGeneratorTarget const* target) const;
|
2007-08-01 15:25:40 -04:00
|
|
|
|
2007-12-28 23:07:14 -05:00
|
|
|
/**
|
|
|
|
* Get the level of backwards compatibility requested by the project
|
|
|
|
* in this directory. This is the value of the CMake variable
|
|
|
|
* CMAKE_BACKWARDS_COMPATIBILITY whose format is
|
|
|
|
* "major.minor[.patch]". The returned integer is encoded as
|
|
|
|
*
|
|
|
|
* CMake_VERSION_ENCODE(major, minor, patch)
|
|
|
|
*
|
|
|
|
* and is monotonically increasing with the CMake version.
|
|
|
|
*/
|
2015-12-17 15:03:42 -05:00
|
|
|
KWIML_INT_uint64_t GetBackwardsCompatibility();
|
2007-12-28 23:07:14 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test whether compatibility is set to a given version or lower.
|
|
|
|
*/
|
2013-10-18 11:25:49 -04:00
|
|
|
bool NeedBackwardsCompatibility_2_4();
|
2008-02-14 15:31:08 -05:00
|
|
|
|
2015-10-23 01:13:36 +02:00
|
|
|
cmPolicies::PolicyStatus GetPolicyStatus(cmPolicies::PolicyID id) const;
|
|
|
|
|
2015-10-07 00:37:31 +02:00
|
|
|
cmake* GetCMakeInstance() const;
|
|
|
|
|
2015-10-07 01:17:48 +02:00
|
|
|
const char* GetSourceDirectory() const;
|
|
|
|
const char* GetBinaryDirectory() const;
|
|
|
|
|
2015-09-25 00:13:20 +02:00
|
|
|
const char* GetCurrentBinaryDirectory() const;
|
2015-10-07 19:25:29 +02:00
|
|
|
const char* GetCurrentSourceDirectory() const;
|
2015-09-25 00:13:20 +02:00
|
|
|
|
2008-02-14 15:31:08 -05:00
|
|
|
/**
|
|
|
|
* Generate a Mac OS X application bundle Info.plist file.
|
|
|
|
*/
|
2015-10-09 22:31:05 +02:00
|
|
|
void GenerateAppleInfoPList(cmGeneratorTarget* target,
|
|
|
|
const std::string& targetName,
|
2008-02-14 15:31:08 -05:00
|
|
|
const char* fname);
|
2008-09-02 12:06:32 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X framework Info.plist file.
|
|
|
|
*/
|
2015-10-09 22:31:05 +02:00
|
|
|
void GenerateFrameworkInfoPList(cmGeneratorTarget* target,
|
2014-02-06 17:31:47 -05:00
|
|
|
const std::string& targetName,
|
2008-09-02 12:06:32 -04:00
|
|
|
const char* fname);
|
2006-04-11 11:06:19 -04:00
|
|
|
/** Construct a comment for a custom command. */
|
2014-03-10 15:47:19 -04:00
|
|
|
std::string ConstructComment(cmCustomCommandGenerator const& ccg,
|
2006-04-11 11:06:19 -04:00
|
|
|
const char* default_comment = "");
|
2009-07-11 00:05:20 -04:00
|
|
|
// Compute object file names.
|
|
|
|
std::string GetObjectFileNameWithoutTarget(const cmSourceFile& source,
|
|
|
|
std::string const& dir_max,
|
|
|
|
bool* hasSourceExtension = 0);
|
2006-04-11 11:06:19 -04:00
|
|
|
|
2013-07-10 19:11:04 +02:00
|
|
|
/** Fill out the static linker flags for the given target. */
|
2016-05-16 10:34:04 -04:00
|
|
|
void GetStaticLibraryFlags(std::string& flags, std::string const& config,
|
2015-10-09 22:19:57 +02:00
|
|
|
cmGeneratorTarget* target);
|
2013-07-10 19:11:04 +02:00
|
|
|
|
2006-03-10 13:54:57 -05:00
|
|
|
/** Fill out these strings for the given target. Libraries to link,
|
|
|
|
* flags, and linkflags. */
|
2016-05-16 10:34:04 -04:00
|
|
|
void GetTargetFlags(std::string& linkLibs, std::string& flags,
|
|
|
|
std::string& linkFlags, std::string& frameworkPath,
|
|
|
|
std::string& linkPath, cmGeneratorTarget* target,
|
2014-04-04 23:06:13 +02:00
|
|
|
bool useWatcomQuote);
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2014-03-11 17:37:26 +01:00
|
|
|
virtual void ComputeObjectFilenames(
|
2016-05-16 10:34:04 -04:00
|
|
|
std::map<cmSourceFile const*, std::string>& mapping,
|
|
|
|
cmGeneratorTarget const* gt = 0);
|
2014-03-11 17:37:26 +01:00
|
|
|
|
2015-05-04 22:40:11 +02:00
|
|
|
bool IsWindowsShell() const;
|
|
|
|
bool IsWatcomWMake() const;
|
|
|
|
bool IsMinGWMake() const;
|
|
|
|
bool IsNMake() const;
|
|
|
|
|
2015-06-13 19:32:46 +02:00
|
|
|
void IssueMessage(cmake::MessageType t, std::string const& text) const;
|
|
|
|
|
2015-08-01 12:05:13 +02:00
|
|
|
void CreateEvaluationFileOutputs(const std::string& config);
|
|
|
|
void ProcessEvaluationFiles(std::vector<std::string>& generatedFiles);
|
2015-06-13 19:32:46 +02:00
|
|
|
|
2011-07-02 17:08:34 +02:00
|
|
|
protected:
|
2006-02-20 14:37:24 -05:00
|
|
|
///! put all the libraries for a target on into the given stream
|
2015-05-19 09:47:18 +02:00
|
|
|
void OutputLinkLibraries(std::string& linkLibraries,
|
2016-05-16 10:34:04 -04:00
|
|
|
std::string& frameworkPath, std::string& linkPath,
|
|
|
|
cmGeneratorTarget&, bool relink,
|
|
|
|
bool forResponseFile, bool useWatcomQuote);
|
2011-10-13 19:51:18 +02:00
|
|
|
|
2004-10-21 14:34:02 -04:00
|
|
|
// Expand rule variables in CMake of the type found in language rules
|
|
|
|
void ExpandRuleVariables(std::string& string,
|
2006-02-20 13:42:18 -05:00
|
|
|
const RuleVariables& replaceValues);
|
2005-04-12 13:27:07 -04:00
|
|
|
// Expand rule variables in a single string
|
|
|
|
std::string ExpandRuleVariable(std::string const& variable,
|
2006-02-20 13:42:18 -05:00
|
|
|
const RuleVariables& replaceValues);
|
2009-02-10 08:51:15 -05:00
|
|
|
|
2015-10-09 22:19:57 +02:00
|
|
|
const char* GetRuleLauncher(cmGeneratorTarget* target,
|
|
|
|
const std::string& prop);
|
|
|
|
void InsertRuleLauncher(std::string& s, cmGeneratorTarget* target,
|
2013-09-02 16:27:32 -04:00
|
|
|
const std::string& prop);
|
2009-02-10 08:51:15 -05:00
|
|
|
|
2006-02-19 15:25:27 -05:00
|
|
|
// Handle old-style install rules stored in the targets.
|
|
|
|
void GenerateTargetInstallRules(
|
2014-02-09 22:48:34 -05:00
|
|
|
std::ostream& os, const std::string& config,
|
2006-02-19 15:25:27 -05:00
|
|
|
std::vector<std::string> const& configurationTypes);
|
2005-04-24 15:59:51 -04:00
|
|
|
|
2014-02-04 13:31:39 -05:00
|
|
|
std::string& CreateSafeUniqueObjectFileName(const std::string& sin,
|
2008-12-16 09:14:40 -05:00
|
|
|
std::string const& dir_max);
|
2006-07-11 11:41:38 -04:00
|
|
|
|
2016-05-19 23:11:40 +02:00
|
|
|
virtual std::string ConvertToLinkReference(
|
|
|
|
std::string const& lib,
|
|
|
|
cmOutputConverter::OutputFormat format = cmOutputConverter::SHELL);
|
2008-01-23 13:03:03 -05:00
|
|
|
|
2008-01-14 09:20:58 -05:00
|
|
|
/** Check whether the native build system supports the given
|
|
|
|
definition. Issues a warning. */
|
|
|
|
virtual bool CheckDefinition(std::string const& define) const;
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
cmMakefile* Makefile;
|
2015-05-03 16:51:51 +02:00
|
|
|
cmState::Snapshot StateSnapshot;
|
2016-05-16 10:34:04 -04:00
|
|
|
cmGlobalGenerator* GlobalGenerator;
|
2014-02-10 00:21:34 -05:00
|
|
|
std::map<std::string, std::string> UniqueObjectNamesMap;
|
2008-08-21 09:54:36 -04:00
|
|
|
std::string::size_type ObjectPathMax;
|
2014-02-10 00:21:34 -05:00
|
|
|
std::set<std::string> ObjectMaxPathViolations;
|
2015-05-04 22:40:11 +02:00
|
|
|
|
2015-10-09 22:29:17 +02:00
|
|
|
std::set<cmGeneratorTarget const*> WarnCMP0063;
|
2015-10-18 16:53:00 +02:00
|
|
|
std::vector<cmGeneratorTarget*> GeneratorTargets;
|
2015-10-25 12:56:31 +01:00
|
|
|
std::vector<cmGeneratorTarget*> ImportedGeneratorTargets;
|
2015-10-25 13:22:42 +01:00
|
|
|
std::vector<cmGeneratorTarget*> OwnedImportedGeneratorTargets;
|
2015-10-25 12:52:46 +01:00
|
|
|
std::map<std::string, std::string> AliasTargets;
|
2015-05-22 14:01:44 -04:00
|
|
|
|
2006-03-24 09:15:05 -05:00
|
|
|
bool EmitUniversalBinaryFlags;
|
2015-05-04 22:40:11 +02:00
|
|
|
|
2006-02-18 15:37:23 -05:00
|
|
|
// Hack for ExpandRuleVariable until object-oriented version is
|
|
|
|
// committed.
|
2006-03-15 11:02:08 -05:00
|
|
|
std::string TargetImplib;
|
2007-03-07 15:15:46 -05:00
|
|
|
|
2015-12-17 15:03:42 -05:00
|
|
|
KWIML_INT_uint64_t BackwardsCompatibility;
|
2007-12-28 23:07:14 -05:00
|
|
|
bool BackwardsCompatibilityFinal;
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2008-10-09 15:30:07 -04:00
|
|
|
private:
|
2014-02-03 21:20:56 -05:00
|
|
|
void AddSharedFlags(std::string& flags, const std::string& lang,
|
|
|
|
bool shared);
|
2016-05-16 10:34:04 -04:00
|
|
|
bool GetShouldUseOldFlags(bool shared, const std::string& lang) const;
|
2012-05-30 14:13:09 -04:00
|
|
|
void AddPositionIndependentFlags(std::string& flags, std::string const& l,
|
|
|
|
int targetType);
|
2015-09-19 13:13:54 +02:00
|
|
|
|
|
|
|
void ComputeObjectMaxPath();
|
2002-08-30 16:00:35 -04:00
|
|
|
};
|
|
|
|
|
2016-05-04 22:49:27 -06:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
2016-05-16 10:34:04 -04:00
|
|
|
bool cmLocalGeneratorCheckObjectName(std::string& objName,
|
2016-05-04 22:49:27 -06:00
|
|
|
std::string::size_type dir_len,
|
|
|
|
std::string::size_type max_total_len);
|
|
|
|
#endif
|
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
#endif
|