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 cmLocalGenerator_h
|
|
|
|
#define cmLocalGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
2015-05-03 17:51:51 +03:00
|
|
|
#include "cmState.h"
|
2015-06-13 20:32:46 +03:00
|
|
|
#include "cmake.h"
|
2015-04-12 14:15:51 +03:00
|
|
|
#include "cmOutputConverter.h"
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmGlobalGenerator;
|
2012-09-16 03:16:43 +04:00
|
|
|
class cmGeneratorTarget;
|
2004-01-26 03:25:26 +03:00
|
|
|
class cmTarget;
|
2006-04-04 19:48:19 +04:00
|
|
|
class cmTargetManifest;
|
2004-10-21 22:34:02 +04:00
|
|
|
class cmSourceFile;
|
2006-04-11 19:06:19 +04:00
|
|
|
class cmCustomCommand;
|
2014-03-10 23:47:19 +04:00
|
|
|
class cmCustomCommandGenerator;
|
2002-08-31 00: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 13:41:00 +03:00
|
|
|
* platforms. This class should never be constructed directly. A
|
2002-08-31 00:00:35 +04:00
|
|
|
* GlobalGenerator will create it and invoke the appropriate commands on it.
|
|
|
|
*/
|
2015-04-12 14:15:51 +03:00
|
|
|
class cmLocalGenerator : public cmOutputConverter
|
2002-08-31 00:00:35 +04:00
|
|
|
{
|
|
|
|
public:
|
2015-05-24 12:50:55 +03:00
|
|
|
cmLocalGenerator(cmGlobalGenerator* gg, cmLocalGenerator* parent,
|
|
|
|
cmState::Snapshot snapshot);
|
2002-09-05 17:04:55 +04:00
|
|
|
virtual ~cmLocalGenerator();
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2002-08-31 00:00:35 +04:00
|
|
|
/**
|
2011-10-13 21:51:18 +04:00
|
|
|
* Generate the makefile for this directory.
|
2002-08-31 00:00:35 +04:00
|
|
|
*/
|
2007-05-09 16:25:45 +04:00
|
|
|
virtual void Generate() {}
|
2002-08-31 00:00:35 +04:00
|
|
|
|
2015-06-13 09:38:27 +03:00
|
|
|
virtual void ComputeHomeRelativeOutputPath() {}
|
|
|
|
|
2011-10-13 21:51:18 +04:00
|
|
|
/**
|
2007-05-09 16:25:45 +04:00
|
|
|
* Calls TraceVSDependencies() on all targets of this generator.
|
|
|
|
*/
|
2013-02-20 22:48:39 +04:00
|
|
|
void TraceDependencies();
|
2007-05-09 22:41:38 +04:00
|
|
|
|
|
|
|
virtual void AddHelperCommands() {}
|
|
|
|
|
2004-01-26 03:25:26 +03:00
|
|
|
/**
|
|
|
|
* Generate the install rules files in this directory.
|
|
|
|
*/
|
2013-02-20 22:48:39 +04:00
|
|
|
void GenerateInstallRules();
|
2004-01-26 03:25:26 +03:00
|
|
|
|
2005-04-24 23:59:51 +04:00
|
|
|
/**
|
|
|
|
* Generate the test files for tests.
|
|
|
|
*/
|
2013-02-20 22:48:39 +04:00
|
|
|
void GenerateTestFiles();
|
2006-04-04 19:48:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a manifest of target files that will be built.
|
|
|
|
*/
|
2013-02-20 22:48:39 +04:00
|
|
|
void GenerateTargetManifest();
|
2005-04-24 23:59:51 +04:00
|
|
|
|
2002-08-31 00:00:35 +04:00
|
|
|
///! Get the makefile for this generator
|
|
|
|
cmMakefile *GetMakefile() {
|
2014-04-03 23:35:22 +04:00
|
|
|
return this->Makefile; }
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2007-06-15 18:10:24 +04:00
|
|
|
///! Get the makefile for this generator, const version
|
|
|
|
const cmMakefile *GetMakefile() const {
|
2014-04-03 23:35:22 +04:00
|
|
|
return this->Makefile; }
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2002-08-31 00:00:35 +04:00
|
|
|
///! Get the GlobalGenerator this is associated with
|
|
|
|
cmGlobalGenerator *GetGlobalGenerator() {
|
2014-04-03 23:35:22 +04:00
|
|
|
return this->GlobalGenerator; }
|
2011-03-26 16:31:59 +03:00
|
|
|
const cmGlobalGenerator *GetGlobalGenerator() const {
|
2014-04-03 23:35:22 +04:00
|
|
|
return this->GlobalGenerator; }
|
2002-08-31 00:00:35 +04:00
|
|
|
|
2015-05-03 17:51:51 +03:00
|
|
|
cmState* GetState() const;
|
|
|
|
cmState::Snapshot GetStateSnapshot() const;
|
|
|
|
|
2011-10-13 21:51:18 +04:00
|
|
|
///! set/get the parent generator
|
2015-03-09 16:25:16 +03:00
|
|
|
cmLocalGenerator* GetParent() const {return this->Parent;}
|
2005-03-18 18:41:41 +03:00
|
|
|
|
|
|
|
///! set/get the children
|
|
|
|
void AddChild(cmLocalGenerator* g) { this->Children.push_back(g); }
|
2014-04-03 23:35:22 +04:00
|
|
|
std::vector<cmLocalGenerator*>& GetChildren() { return this->Children; }
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2004-06-28 22:40:17 +04:00
|
|
|
|
2015-03-30 05:56:21 +03:00
|
|
|
void AddArchitectureFlags(std::string& flags,
|
|
|
|
cmGeneratorTarget const* target,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string&lang, const std::string& config);
|
2009-10-21 21:00:49 +04:00
|
|
|
|
2014-02-04 06:20:56 +04:00
|
|
|
void AddLanguageFlags(std::string& flags, const std::string& lang,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config);
|
2015-03-30 05:56:21 +03:00
|
|
|
void AddCMP0018Flags(std::string &flags, cmTarget const* target,
|
2014-02-10 07:48:34 +04:00
|
|
|
std::string const& lang, const std::string& config);
|
2015-03-30 05:56:21 +03:00
|
|
|
void AddVisibilityPresetFlags(std::string &flags, cmTarget const* target,
|
2014-02-04 06:20:56 +04:00
|
|
|
const std::string& lang);
|
2014-02-05 01:06:56 +04:00
|
|
|
void AddConfigVariableFlags(std::string& flags, const std::string& var,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config);
|
2015-03-30 05:56:21 +03:00
|
|
|
void AddCompilerRequirementFlag(std::string &flags, cmTarget const* target,
|
2013-10-13 04:00:24 +04:00
|
|
|
const std::string& lang);
|
2011-03-20 14:16:43 +03:00
|
|
|
///! Append flags to a string.
|
2014-05-02 00:07:26 +04:00
|
|
|
virtual void AppendFlags(std::string& flags, const std::string& newFlags);
|
2007-05-10 22:43:55 +04:00
|
|
|
virtual void AppendFlags(std::string& flags, const char* newFlags);
|
2014-02-08 09:29:59 +04:00
|
|
|
virtual void AppendFlagEscape(std::string& flags,
|
|
|
|
const std::string& rawFlag);
|
2005-02-04 01:42:55 +03:00
|
|
|
///! Get the include flags for the current makefile and language
|
2011-11-07 14:49:33 +04:00
|
|
|
std::string GetIncludeFlags(const std::vector<std::string> &includes,
|
2013-07-02 00:28:26 +04:00
|
|
|
cmGeneratorTarget* target,
|
2014-02-04 06:20:56 +04:00
|
|
|
const std::string& lang,
|
2014-10-10 17:57:07 +04:00
|
|
|
bool forceFullPaths = false,
|
2014-02-04 06:20:56 +04:00
|
|
|
bool forResponseFile = false,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config = "");
|
2005-02-02 21:19:57 +03:00
|
|
|
|
2008-01-14 17:20:58 +03:00
|
|
|
/**
|
|
|
|
* Encode a list of preprocessor definitions for the compiler
|
|
|
|
* command line.
|
|
|
|
*/
|
2012-08-09 11:44:15 +04:00
|
|
|
void AppendDefines(std::set<std::string>& defines,
|
|
|
|
const char* defines_list);
|
2012-09-21 01:24:20 +04:00
|
|
|
void AppendDefines(std::set<std::string>& defines,
|
|
|
|
std::string defines_list)
|
|
|
|
{
|
|
|
|
this->AppendDefines(defines, defines_list.c_str());
|
|
|
|
}
|
2013-06-06 20:17:10 +04:00
|
|
|
void AppendDefines(std::set<std::string>& defines,
|
|
|
|
const std::vector<std::string> &defines_vec);
|
|
|
|
|
2012-08-09 11:44:15 +04:00
|
|
|
/**
|
|
|
|
* Join a set of defines into a definesString with a space separator.
|
|
|
|
*/
|
|
|
|
void JoinDefines(const std::set<std::string>& defines,
|
|
|
|
std::string &definesString,
|
2014-02-04 06:20:56 +04:00
|
|
|
const std::string& lang);
|
2008-01-14 17:20:58 +03:00
|
|
|
|
2009-10-02 21:52:01 +04:00
|
|
|
/** Lookup and append options associated with a particular feature. */
|
2014-02-04 06:20:56 +04:00
|
|
|
void AppendFeatureOptions(std::string& flags, const std::string& lang,
|
2009-10-02 21:52:01 +04:00
|
|
|
const char* feature);
|
|
|
|
|
2015-06-06 16:42:31 +03: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-10 07:48:34 +04:00
|
|
|
bool GetRealDependency(const std::string& name, const std::string& config,
|
2010-12-09 00:51:16 +03:00
|
|
|
std::string& dep);
|
|
|
|
|
2014-03-04 22:04:02 +04:00
|
|
|
virtual std::string ConvertToIncludeReference(std::string const& path,
|
2014-10-10 17:57:07 +04:00
|
|
|
OutputFormat format = SHELL,
|
|
|
|
bool forceFullPaths = false);
|
2011-09-07 05:41:41 +04:00
|
|
|
|
2007-12-20 00:36:30 +03:00
|
|
|
/** Called from command-line hook to clear dependencies. */
|
2011-10-13 21:51:18 +04:00
|
|
|
virtual void ClearDependencies(cmMakefile* /* mf */,
|
2007-12-20 00:36:30 +03:00
|
|
|
bool /* verbose */) {}
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2007-12-20 00:36:30 +03:00
|
|
|
/** Called from command-line hook to update dependencies. */
|
|
|
|
virtual bool UpdateDependencies(const char* /* tgtInfo */,
|
2007-12-20 01:15:41 +03:00
|
|
|
bool /*verbose*/,
|
|
|
|
bool /*color*/)
|
2007-12-20 00:36:30 +03:00
|
|
|
{ return true; }
|
2005-05-12 18:49:56 +04:00
|
|
|
|
2006-02-20 17:54:25 +03:00
|
|
|
/** Get the include flags for the current makefile and language. */
|
2009-02-26 17:16:16 +03:00
|
|
|
void GetIncludeDirectories(std::vector<std::string>& dirs,
|
2012-09-16 12:03:42 +04:00
|
|
|
cmGeneratorTarget* target,
|
2014-02-04 06:20:56 +04:00
|
|
|
const std::string& lang = "C",
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config = "",
|
2015-06-06 13:57:19 +03:00
|
|
|
bool stripImplicitInclDirs = true) const;
|
2013-06-27 20:04:02 +04:00
|
|
|
void AddCompileOptions(std::string& flags, cmTarget* target,
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& lang, const std::string& config);
|
2013-12-10 18:44:56 +04:00
|
|
|
void AddCompileDefinitions(std::set<std::string>& defines,
|
|
|
|
cmTarget const* target,
|
2015-03-04 23:46:42 +03:00
|
|
|
const std::string& config,
|
|
|
|
const std::string& lang);
|
2006-02-20 17:54:25 +03:00
|
|
|
|
2006-08-03 17:26:07 +04:00
|
|
|
/** Compute the language used to compile the given source file. */
|
2014-02-04 06:20:56 +04:00
|
|
|
std::string GetSourceFileLanguage(const cmSourceFile& source);
|
2006-08-03 17:26:07 +04:00
|
|
|
|
2012-06-15 14:14:13 +04:00
|
|
|
// Fill the vector with the target names for the object files,
|
|
|
|
// preprocessed files and assembly files.
|
2012-06-16 14:58:06 +04:00
|
|
|
virtual void GetIndividualFileTargets(std::vector<std::string>&) {}
|
2012-06-15 14:14:13 +04:00
|
|
|
|
2006-02-20 21:42:18 +03:00
|
|
|
// Create a struct to hold the varibles passed into
|
|
|
|
// ExpandRuleVariables
|
|
|
|
struct RuleVariables
|
|
|
|
{
|
|
|
|
RuleVariables()
|
|
|
|
{
|
2006-08-08 21:44:25 +04:00
|
|
|
memset(this, 0, sizeof(*this));
|
2006-02-20 21:42:18 +03:00
|
|
|
}
|
2009-02-10 16:51:15 +03:00
|
|
|
cmTarget* CMTarget;
|
2006-04-20 00:36:14 +04:00
|
|
|
const char* TargetPDB;
|
2014-02-24 23:15:21 +04:00
|
|
|
const char* TargetCompilePDB;
|
2006-10-17 02:17:14 +04:00
|
|
|
const char* TargetVersionMajor;
|
|
|
|
const char* TargetVersionMinor;
|
2006-02-20 21:42:18 +03:00
|
|
|
const char* Language;
|
|
|
|
const char* Objects;
|
|
|
|
const char* Target;
|
|
|
|
const char* LinkLibraries;
|
|
|
|
const char* Source;
|
2006-08-08 07:25:21 +04:00
|
|
|
const char* AssemblySource;
|
|
|
|
const char* PreprocessedSource;
|
2009-02-10 16:52:07 +03:00
|
|
|
const char* Output;
|
2006-02-20 21:42:18 +03:00
|
|
|
const char* Object;
|
2006-04-17 22:01:22 +04:00
|
|
|
const char* ObjectDir;
|
2014-06-05 16:57:17 +04:00
|
|
|
const char* ObjectFileDir;
|
2006-02-20 21:42:18 +03:00
|
|
|
const char* Flags;
|
|
|
|
const char* ObjectsQuoted;
|
2012-04-22 17:42:55 +04:00
|
|
|
const char* SONameFlag;
|
2006-02-20 21:42:18 +03:00
|
|
|
const char* TargetSOName;
|
2006-02-24 21:13:14 +03:00
|
|
|
const char* TargetInstallNameDir;
|
2006-02-20 21:42:18 +03:00
|
|
|
const char* LinkFlags;
|
2006-03-06 23:14:23 +03:00
|
|
|
const char* LanguageCompileFlags;
|
2008-01-14 17:20:58 +03:00
|
|
|
const char* Defines;
|
2009-02-10 16:51:15 +03:00
|
|
|
const char* RuleLauncher;
|
2012-06-13 02:52:46 +04:00
|
|
|
const char* DependencyFile;
|
2013-12-02 02:16:06 +04:00
|
|
|
const char* FilterPrefix;
|
2006-02-20 21:42:18 +03:00
|
|
|
};
|
2006-02-20 22:37:24 +03:00
|
|
|
|
2007-08-01 23:25:40 +04:00
|
|
|
/**
|
|
|
|
* Get the relative path from the generator output directory to a
|
|
|
|
* per-target support directory.
|
|
|
|
*/
|
|
|
|
virtual std::string GetTargetDirectory(cmTarget const& target) const;
|
|
|
|
|
2007-12-29 07:07:14 +03: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.
|
|
|
|
*/
|
2014-02-10 23:52:59 +04:00
|
|
|
cmIML_INT_uint64_t GetBackwardsCompatibility();
|
2007-12-29 07:07:14 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test whether compatibility is set to a given version or lower.
|
|
|
|
*/
|
2013-10-18 19:25:49 +04:00
|
|
|
bool NeedBackwardsCompatibility_2_4();
|
2008-02-14 23:31:08 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X application bundle Info.plist file.
|
|
|
|
*/
|
2014-02-07 02:31:47 +04:00
|
|
|
void GenerateAppleInfoPList(cmTarget* target, const std::string& targetName,
|
2008-02-14 23:31:08 +03:00
|
|
|
const char* fname);
|
2008-09-02 20:06:32 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X framework Info.plist file.
|
|
|
|
*/
|
|
|
|
void GenerateFrameworkInfoPList(cmTarget* target,
|
2014-02-07 02:31:47 +04:00
|
|
|
const std::string& targetName,
|
2008-09-02 20:06:32 +04:00
|
|
|
const char* fname);
|
2006-04-11 19:06:19 +04:00
|
|
|
/** Construct a comment for a custom command. */
|
2014-03-10 23:47:19 +04:00
|
|
|
std::string ConstructComment(cmCustomCommandGenerator const& ccg,
|
2006-04-11 19:06:19 +04:00
|
|
|
const char* default_comment = "");
|
2009-07-11 08: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 19:06:19 +04:00
|
|
|
|
2013-07-10 21:11:04 +04:00
|
|
|
/** Fill out the static linker flags for the given target. */
|
|
|
|
void GetStaticLibraryFlags(std::string& flags,
|
|
|
|
std::string const& config,
|
|
|
|
cmTarget* target);
|
|
|
|
|
2006-03-10 21:54:57 +03:00
|
|
|
/** Fill out these strings for the given target. Libraries to link,
|
|
|
|
* flags, and linkflags. */
|
2011-10-13 21:51:18 +04:00
|
|
|
void GetTargetFlags(std::string& linkLibs,
|
2006-02-20 22:37:24 +03:00
|
|
|
std::string& flags,
|
|
|
|
std::string& linkFlags,
|
2012-09-26 16:38:15 +04:00
|
|
|
std::string& frameworkPath,
|
|
|
|
std::string& linkPath,
|
2014-04-05 01:06:13 +04:00
|
|
|
cmGeneratorTarget* target,
|
|
|
|
bool useWatcomQuote);
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2014-03-11 20:37:26 +04:00
|
|
|
virtual void ComputeObjectFilenames(
|
|
|
|
std::map<cmSourceFile const*, std::string>& mapping,
|
|
|
|
cmGeneratorTarget const* gt = 0);
|
|
|
|
|
2015-05-04 23:40:11 +03:00
|
|
|
bool IsWindowsShell() const;
|
|
|
|
bool IsWatcomWMake() const;
|
|
|
|
bool IsMinGWMake() const;
|
|
|
|
bool IsNMake() const;
|
|
|
|
|
2015-06-13 20:32:46 +03:00
|
|
|
void IssueMessage(cmake::MessageType t, std::string const& text) const;
|
|
|
|
|
|
|
|
|
2015-05-30 20:34:09 +03:00
|
|
|
void ComputeObjectMaxPath();
|
2011-07-02 19:08:34 +04:00
|
|
|
protected:
|
2006-02-20 22:37:24 +03:00
|
|
|
///! put all the libraries for a target on into the given stream
|
2015-05-19 10:47:18 +03:00
|
|
|
void OutputLinkLibraries(std::string& linkLibraries,
|
2012-09-26 16:38:15 +04:00
|
|
|
std::string& frameworkPath,
|
|
|
|
std::string& linkPath,
|
|
|
|
cmGeneratorTarget &,
|
2014-03-04 22:20:04 +04:00
|
|
|
bool relink,
|
2014-04-05 01:06:13 +04:00
|
|
|
bool forResponseFile,
|
|
|
|
bool useWatcomQuote);
|
2011-10-13 21:51:18 +04:00
|
|
|
|
2004-10-21 22:34:02 +04:00
|
|
|
// Expand rule variables in CMake of the type found in language rules
|
|
|
|
void ExpandRuleVariables(std::string& string,
|
2006-02-20 21:42:18 +03:00
|
|
|
const RuleVariables& replaceValues);
|
2005-04-12 21:27:07 +04:00
|
|
|
// Expand rule variables in a single string
|
|
|
|
std::string ExpandRuleVariable(std::string const& variable,
|
2006-02-20 21:42:18 +03:00
|
|
|
const RuleVariables& replaceValues);
|
2009-02-10 16:51:15 +03:00
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
const char* GetRuleLauncher(cmTarget* target, const std::string& prop);
|
2009-02-10 16:51:15 +03:00
|
|
|
void InsertRuleLauncher(std::string& s, cmTarget* target,
|
2013-09-03 00:27:32 +04:00
|
|
|
const std::string& prop);
|
2009-02-10 16:51:15 +03:00
|
|
|
|
2011-10-13 21:51:18 +04:00
|
|
|
|
|
|
|
/** Convert a target to a utility target for unsupported
|
2006-03-10 21:54:57 +03:00
|
|
|
* languages of a generator */
|
2014-02-04 06:20:56 +04:00
|
|
|
void AddBuildTargetRule(const std::string& llang,
|
|
|
|
cmGeneratorTarget& target);
|
2011-10-13 21:51:18 +04:00
|
|
|
///! add a custom command to build a .o file that is part of a target
|
|
|
|
void AddCustomCommandToCreateObject(const char* ofname,
|
2014-02-04 06:20:56 +04:00
|
|
|
const std::string& lang,
|
2004-10-21 22:34:02 +04:00
|
|
|
cmSourceFile& source,
|
2012-09-16 03:16:43 +04:00
|
|
|
cmGeneratorTarget& target);
|
2004-10-21 22:34:02 +04:00
|
|
|
// Create Custom Targets and commands for unsupported languages
|
|
|
|
// The set passed in should contain the languages supported by the
|
|
|
|
// generator directly. Any targets containing files that are not
|
|
|
|
// of the types listed will be compiled as custom commands and added
|
|
|
|
// to a custom target.
|
2014-02-10 09:21:34 +04:00
|
|
|
void CreateCustomTargetsAndCommands(std::set<std::string> const&);
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
// Handle old-style install rules stored in the targets.
|
|
|
|
void GenerateTargetInstallRules(
|
2014-02-10 07:48:34 +04:00
|
|
|
std::ostream& os, const std::string& config,
|
2006-02-19 23:25:27 +03:00
|
|
|
std::vector<std::string> const& configurationTypes);
|
2005-04-24 23:59:51 +04:00
|
|
|
|
2014-02-04 22:31:39 +04:00
|
|
|
std::string& CreateSafeUniqueObjectFileName(const std::string& sin,
|
2008-12-16 17:14:40 +03:00
|
|
|
std::string const& dir_max);
|
2006-07-11 19:41:38 +04:00
|
|
|
|
2014-03-04 22:06:29 +04:00
|
|
|
virtual std::string ConvertToLinkReference(std::string const& lib,
|
|
|
|
OutputFormat format = SHELL);
|
2008-01-23 21:03:03 +03:00
|
|
|
|
2008-01-14 17:20:58 +03:00
|
|
|
/** Check whether the native build system supports the given
|
|
|
|
definition. Issues a warning. */
|
|
|
|
virtual bool CheckDefinition(std::string const& define) const;
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
cmMakefile *Makefile;
|
2015-05-03 17:51:51 +03:00
|
|
|
cmState::Snapshot StateSnapshot;
|
2006-03-15 19:02:08 +03:00
|
|
|
cmGlobalGenerator *GlobalGenerator;
|
|
|
|
cmLocalGenerator* Parent;
|
2005-03-18 18:41:41 +03:00
|
|
|
std::vector<cmLocalGenerator*> Children;
|
2014-02-10 09:21:34 +04:00
|
|
|
std::map<std::string, std::string> UniqueObjectNamesMap;
|
2008-08-21 17:54:36 +04:00
|
|
|
std::string::size_type ObjectPathMax;
|
2014-02-10 09:21:34 +04:00
|
|
|
std::set<std::string> ObjectMaxPathViolations;
|
2015-05-04 23:40:11 +03:00
|
|
|
|
2015-05-22 21:01:44 +03:00
|
|
|
std::set<cmTarget const*> WarnCMP0063;
|
|
|
|
|
2006-03-24 17:15:05 +03:00
|
|
|
bool EmitUniversalBinaryFlags;
|
2015-05-04 23:40:11 +03:00
|
|
|
|
2006-02-18 23:37:23 +03:00
|
|
|
// Hack for ExpandRuleVariable until object-oriented version is
|
|
|
|
// committed.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string TargetImplib;
|
2007-03-07 23:15:46 +03:00
|
|
|
|
2014-02-10 23:52:59 +04:00
|
|
|
cmIML_INT_uint64_t BackwardsCompatibility;
|
2007-12-29 07:07:14 +03:00
|
|
|
bool BackwardsCompatibilityFinal;
|
2008-10-09 23:30:07 +04:00
|
|
|
private:
|
2014-02-04 06:20:56 +04:00
|
|
|
void AddSharedFlags(std::string& flags, const std::string& lang,
|
|
|
|
bool shared);
|
2012-05-30 22:13:09 +04:00
|
|
|
bool GetShouldUseOldFlags(bool shared, const std::string &lang) const;
|
|
|
|
void AddPositionIndependentFlags(std::string& flags, std::string const& l,
|
|
|
|
int targetType);
|
2002-08-31 00:00:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|