2009-09-28 15:43:28 +00:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-08-30 20:00:35 +00:00
|
|
|
|
2009-09-28 15:43:28 +00:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-08-30 20:00:35 +00:00
|
|
|
|
2009-09-28 15:43:28 +00: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 20:00:35 +00:00
|
|
|
#ifndef cmLocalGenerator_h
|
|
|
|
#define cmLocalGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmGlobalGenerator;
|
2012-09-15 23:16:43 +00:00
|
|
|
class cmGeneratorTarget;
|
2004-01-26 00:25:26 +00:00
|
|
|
class cmTarget;
|
2006-04-04 15:48:19 +00:00
|
|
|
class cmTargetManifest;
|
2004-10-21 18:34:02 +00:00
|
|
|
class cmSourceFile;
|
2006-04-11 15:06:19 +00:00
|
|
|
class cmCustomCommand;
|
2002-08-30 20:00:35 +00: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 10:41:00 +00:00
|
|
|
* platforms. This class should never be constructed directly. A
|
2002-08-30 20:00:35 +00:00
|
|
|
* GlobalGenerator will create it and invoke the appropriate commands on it.
|
|
|
|
*/
|
|
|
|
class cmLocalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmLocalGenerator();
|
2002-09-05 13:04:55 +00:00
|
|
|
virtual ~cmLocalGenerator();
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2002-08-30 20:00:35 +00:00
|
|
|
/**
|
2011-10-13 17:51:18 +00:00
|
|
|
* Generate the makefile for this directory.
|
2002-08-30 20:00:35 +00:00
|
|
|
*/
|
2007-05-09 12:25:45 +00:00
|
|
|
virtual void Generate() {}
|
2002-08-30 20:00:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the CMakeLists files for this directory to fill in the
|
2011-10-13 17:51:18 +00:00
|
|
|
* Makefile ivar
|
2002-08-30 20:00:35 +00:00
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
|
2011-10-13 17:51:18 +00:00
|
|
|
/**
|
2007-05-09 12:25:45 +00:00
|
|
|
* Calls TraceVSDependencies() on all targets of this generator.
|
|
|
|
*/
|
2013-02-20 18:48:39 +00:00
|
|
|
void TraceDependencies();
|
2007-05-09 18:41:38 +00:00
|
|
|
|
|
|
|
virtual void AddHelperCommands() {}
|
|
|
|
|
2002-09-15 12:54:16 +00:00
|
|
|
/**
|
|
|
|
* Perform any final calculations prior to generation
|
|
|
|
*/
|
2013-02-20 18:48:39 +00:00
|
|
|
void ConfigureFinalPass();
|
2002-09-15 12:54:16 +00:00
|
|
|
|
2004-01-26 00:25:26 +00:00
|
|
|
/**
|
|
|
|
* Generate the install rules files in this directory.
|
|
|
|
*/
|
2013-02-20 18:48:39 +00:00
|
|
|
void GenerateInstallRules();
|
2004-01-26 00:25:26 +00:00
|
|
|
|
2005-04-24 19:59:51 +00:00
|
|
|
/**
|
|
|
|
* Generate the test files for tests.
|
|
|
|
*/
|
2013-02-20 18:48:39 +00:00
|
|
|
void GenerateTestFiles();
|
2006-04-04 15:48:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a manifest of target files that will be built.
|
|
|
|
*/
|
2013-02-20 18:48:39 +00:00
|
|
|
void GenerateTargetManifest();
|
2005-04-24 19:59:51 +00:00
|
|
|
|
2002-08-30 20:00:35 +00:00
|
|
|
///! Get the makefile for this generator
|
|
|
|
cmMakefile *GetMakefile() {
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->Makefile; };
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2007-06-15 14:10:24 +00:00
|
|
|
///! Get the makefile for this generator, const version
|
|
|
|
const cmMakefile *GetMakefile() const {
|
|
|
|
return this->Makefile; };
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2002-08-30 20:00:35 +00:00
|
|
|
///! Get the GlobalGenerator this is associated with
|
|
|
|
cmGlobalGenerator *GetGlobalGenerator() {
|
2006-03-15 16:02:08 +00:00
|
|
|
return this->GlobalGenerator; };
|
2011-03-26 13:31:59 +00:00
|
|
|
const cmGlobalGenerator *GetGlobalGenerator() const {
|
|
|
|
return this->GlobalGenerator; };
|
2002-08-30 20:00:35 +00:00
|
|
|
|
|
|
|
///! Set the Global Generator, done on creation by the GlobalGenerator
|
2002-09-04 19:24:49 +00:00
|
|
|
void SetGlobalGenerator(cmGlobalGenerator *gg);
|
2004-01-26 00:25:26 +00:00
|
|
|
|
2011-10-13 17:51:18 +00:00
|
|
|
/**
|
2011-03-19 10:41:00 +00:00
|
|
|
* Convert something to something else. This is a centralized conversion
|
2005-05-13 13:54:30 +00:00
|
|
|
* routine used by the generators to handle relative paths and the like.
|
2011-10-13 17:51:18 +00:00
|
|
|
* The flags determine what is actually done.
|
2005-05-13 13:54:30 +00:00
|
|
|
*
|
|
|
|
* relative: treat the argument as a directory and convert it to make it
|
|
|
|
* relative or full or unchanged. If relative (HOME, START etc) then that
|
|
|
|
* specifies what it should be relative to.
|
|
|
|
*
|
|
|
|
* output: make the result suitable for output to a...
|
|
|
|
*
|
|
|
|
* optional: should any relative path operation be controlled by the rel
|
|
|
|
* path setting
|
|
|
|
*/
|
|
|
|
enum RelativeRoot { NONE, FULL, HOME, START, HOME_OUTPUT, START_OUTPUT };
|
2010-03-11 13:49:05 +00:00
|
|
|
enum OutputFormat { UNCHANGED, MAKEFILE, SHELL, RESPONSE };
|
2008-10-09 19:30:07 +00:00
|
|
|
std::string ConvertToOutputFormat(const char* source, OutputFormat output);
|
|
|
|
std::string Convert(const char* remote, RelativeRoot local,
|
2005-05-13 13:54:30 +00:00
|
|
|
OutputFormat output = UNCHANGED,
|
|
|
|
bool optional = false);
|
2008-10-09 19:30:07 +00:00
|
|
|
std::string Convert(RelativeRoot remote, const char* local,
|
|
|
|
OutputFormat output = UNCHANGED,
|
|
|
|
bool optional = false);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get path for the specified relative root.
|
|
|
|
*/
|
|
|
|
const char* GetRelativeRootPath(RelativeRoot relroot);
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2005-02-24 21:04:54 +00:00
|
|
|
/**
|
|
|
|
* Convert the given path to an output path that is optionally
|
|
|
|
* relative based on the cache option CMAKE_USE_RELATIVE_PATHS. The
|
|
|
|
* remote path must use forward slashes and not already be escaped
|
|
|
|
* or quoted.
|
|
|
|
*/
|
|
|
|
std::string ConvertToOptionallyRelativeOutputPath(const char* remote);
|
|
|
|
|
2011-10-13 17:51:18 +00:00
|
|
|
///! set/get the parent generator
|
2006-03-15 16:02:08 +00:00
|
|
|
cmLocalGenerator* GetParent(){return this->Parent;}
|
|
|
|
void SetParent(cmLocalGenerator* g) { this->Parent = g; g->AddChild(this); }
|
2005-03-18 15:41:41 +00:00
|
|
|
|
|
|
|
///! set/get the children
|
|
|
|
void AddChild(cmLocalGenerator* g) { this->Children.push_back(g); }
|
|
|
|
std::vector<cmLocalGenerator*>& GetChildren() { return this->Children; };
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2004-06-28 18:40:17 +00:00
|
|
|
|
2012-09-15 23:16:43 +00:00
|
|
|
void AddArchitectureFlags(std::string& flags, cmGeneratorTarget* target,
|
2009-10-23 12:02:24 +00:00
|
|
|
const char *lang, const char* config);
|
2009-10-21 17:00:49 +00:00
|
|
|
|
2006-02-24 16:13:31 +00:00
|
|
|
void AddLanguageFlags(std::string& flags, const char* lang,
|
|
|
|
const char* config);
|
2012-05-30 18:13:09 +00:00
|
|
|
void AddCMP0018Flags(std::string &flags, cmTarget* target,
|
2012-11-05 11:46:26 +00:00
|
|
|
std::string const& lang, const char *config);
|
2013-05-18 10:12:18 +00:00
|
|
|
void AddVisibilityPresetFlags(std::string &flags, cmTarget* target,
|
|
|
|
const char *lang);
|
2006-02-24 16:13:31 +00:00
|
|
|
void AddConfigVariableFlags(std::string& flags, const char* var,
|
|
|
|
const char* config);
|
2011-03-20 11:16:43 +00:00
|
|
|
///! Append flags to a string.
|
2007-05-10 18:43:55 +00:00
|
|
|
virtual void AppendFlags(std::string& flags, const char* newFlags);
|
2013-06-27 15:49:06 +00:00
|
|
|
virtual void AppendFlagEscape(std::string& flags, const char* rawFlag);
|
2005-02-03 22:42:55 +00:00
|
|
|
///! Get the include flags for the current makefile and language
|
2011-11-07 10:49:33 +00:00
|
|
|
std::string GetIncludeFlags(const std::vector<std::string> &includes,
|
2013-01-25 08:26:35 +00:00
|
|
|
const char* lang, bool forResponseFile = false,
|
|
|
|
const char *config = 0);
|
2005-02-02 18:19:57 +00:00
|
|
|
|
2008-01-14 14:20:58 +00:00
|
|
|
/**
|
|
|
|
* Encode a list of preprocessor definitions for the compiler
|
|
|
|
* command line.
|
|
|
|
*/
|
2012-08-09 07:44:15 +00:00
|
|
|
void AppendDefines(std::set<std::string>& defines,
|
|
|
|
const char* defines_list);
|
2012-09-20 21:24:20 +00:00
|
|
|
void AppendDefines(std::set<std::string>& defines,
|
|
|
|
std::string defines_list)
|
|
|
|
{
|
|
|
|
this->AppendDefines(defines, defines_list.c_str());
|
|
|
|
}
|
2012-08-09 07:44:15 +00:00
|
|
|
/**
|
|
|
|
* Join a set of defines into a definesString with a space separator.
|
|
|
|
*/
|
|
|
|
void JoinDefines(const std::set<std::string>& defines,
|
|
|
|
std::string &definesString,
|
|
|
|
const char* lang);
|
2008-01-14 14:20:58 +00:00
|
|
|
|
2009-10-02 17:52:01 +00:00
|
|
|
/** Lookup and append options associated with a particular feature. */
|
|
|
|
void AppendFeatureOptions(std::string& flags, const char* lang,
|
|
|
|
const char* feature);
|
|
|
|
|
2012-02-25 09:16:07 +00: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.
|
|
|
|
*/
|
2010-12-08 21:51:16 +00:00
|
|
|
bool GetRealDependency(const char* name, const char* config,
|
|
|
|
std::string& dep);
|
|
|
|
|
2005-02-14 21:46:32 +00:00
|
|
|
///! for existing files convert to output path and short path if spaces
|
2008-10-09 19:30:07 +00:00
|
|
|
std::string ConvertToOutputForExisting(const char* remote,
|
|
|
|
RelativeRoot local = START_OUTPUT);
|
|
|
|
|
|
|
|
/** For existing path identified by RelativeRoot convert to output
|
|
|
|
path and short path if spaces. */
|
|
|
|
std::string ConvertToOutputForExisting(RelativeRoot remote,
|
|
|
|
const char* local = 0);
|
2011-09-07 01:41:41 +00:00
|
|
|
|
|
|
|
virtual std::string ConvertToIncludeReference(std::string const& path);
|
|
|
|
|
2007-12-19 21:36:30 +00:00
|
|
|
/** Called from command-line hook to clear dependencies. */
|
2011-10-13 17:51:18 +00:00
|
|
|
virtual void ClearDependencies(cmMakefile* /* mf */,
|
2007-12-19 21:36:30 +00:00
|
|
|
bool /* verbose */) {}
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2007-12-19 21:36:30 +00:00
|
|
|
/** Called from command-line hook to update dependencies. */
|
|
|
|
virtual bool UpdateDependencies(const char* /* tgtInfo */,
|
2007-12-19 22:15:41 +00:00
|
|
|
bool /*verbose*/,
|
|
|
|
bool /*color*/)
|
2007-12-19 21:36:30 +00:00
|
|
|
{ return true; }
|
2005-05-12 14:49:56 +00:00
|
|
|
|
2006-02-20 14:54:25 +00:00
|
|
|
/** Get the include flags for the current makefile and language. */
|
2009-02-26 14:16:16 +00:00
|
|
|
void GetIncludeDirectories(std::vector<std::string>& dirs,
|
2012-09-16 08:03:42 +00:00
|
|
|
cmGeneratorTarget* target,
|
2012-12-07 20:24:28 +00:00
|
|
|
const char* lang = "C", const char *config = 0,
|
|
|
|
bool stripImplicitInclDirs = true);
|
2013-06-27 16:04:02 +00:00
|
|
|
void AddCompileOptions(std::string& flags, cmTarget* target,
|
|
|
|
const char* lang, const char* config);
|
2006-02-20 14:54:25 +00:00
|
|
|
|
2006-08-03 13:26:07 +00:00
|
|
|
/** Compute the language used to compile the given source file. */
|
|
|
|
const char* GetSourceFileLanguage(const cmSourceFile& source);
|
|
|
|
|
2012-06-15 10:14:13 +00:00
|
|
|
// Fill the vector with the target names for the object files,
|
|
|
|
// preprocessed files and assembly files.
|
2012-06-16 10:58:06 +00:00
|
|
|
virtual void GetIndividualFileTargets(std::vector<std::string>&) {}
|
2012-06-15 10:14:13 +00:00
|
|
|
|
2006-02-20 18:42:18 +00:00
|
|
|
// Create a struct to hold the varibles passed into
|
|
|
|
// ExpandRuleVariables
|
|
|
|
struct RuleVariables
|
|
|
|
{
|
|
|
|
RuleVariables()
|
|
|
|
{
|
2006-08-08 17:44:25 +00:00
|
|
|
memset(this, 0, sizeof(*this));
|
2006-02-20 18:42:18 +00:00
|
|
|
}
|
2009-02-10 13:51:15 +00:00
|
|
|
cmTarget* CMTarget;
|
2006-04-19 20:36:14 +00:00
|
|
|
const char* TargetPDB;
|
2006-10-16 22:17:14 +00:00
|
|
|
const char* TargetVersionMajor;
|
|
|
|
const char* TargetVersionMinor;
|
2006-02-20 18:42:18 +00:00
|
|
|
const char* Language;
|
|
|
|
const char* Objects;
|
|
|
|
const char* Target;
|
|
|
|
const char* LinkLibraries;
|
|
|
|
const char* Source;
|
2006-08-08 03:25:21 +00:00
|
|
|
const char* AssemblySource;
|
|
|
|
const char* PreprocessedSource;
|
2009-02-10 13:52:07 +00:00
|
|
|
const char* Output;
|
2006-02-20 18:42:18 +00:00
|
|
|
const char* Object;
|
2006-04-17 18:01:22 +00:00
|
|
|
const char* ObjectDir;
|
2006-02-20 18:42:18 +00:00
|
|
|
const char* Flags;
|
|
|
|
const char* ObjectsQuoted;
|
2012-04-22 13:42:55 +00:00
|
|
|
const char* SONameFlag;
|
2006-02-20 18:42:18 +00:00
|
|
|
const char* TargetSOName;
|
2006-02-24 18:13:14 +00:00
|
|
|
const char* TargetInstallNameDir;
|
2006-02-20 18:42:18 +00:00
|
|
|
const char* LinkFlags;
|
2006-03-06 20:14:23 +00:00
|
|
|
const char* LanguageCompileFlags;
|
2008-01-14 14:20:58 +00:00
|
|
|
const char* Defines;
|
2009-02-10 13:51:15 +00:00
|
|
|
const char* RuleLauncher;
|
2012-06-12 22:52:46 +00:00
|
|
|
const char* DependencyFile;
|
2006-02-20 18:42:18 +00:00
|
|
|
};
|
2006-02-20 19:37:24 +00:00
|
|
|
|
2008-01-30 02:16:49 +00:00
|
|
|
/** Set whether to treat conversions to SHELL as a link script shell. */
|
|
|
|
void SetLinkScriptShell(bool b) { this->LinkScriptShell = b; }
|
|
|
|
|
2006-09-21 19:14:06 +00:00
|
|
|
/** Escape the given string to be used as a command line argument in
|
2006-09-27 17:43:46 +00:00
|
|
|
the native build system shell. Optionally allow the build
|
2006-10-04 22:52:29 +00:00
|
|
|
system to replace make variable references. Optionally adjust
|
|
|
|
escapes for the special case of passing to the native echo
|
|
|
|
command. */
|
|
|
|
std::string EscapeForShell(const char* str, bool makeVars = false,
|
|
|
|
bool forEcho = false);
|
2006-09-27 17:43:46 +00:00
|
|
|
|
|
|
|
/** Backwards-compatibility version of EscapeForShell. */
|
|
|
|
std::string EscapeForShellOldStyle(const char* str);
|
2008-01-18 00:58:01 +00:00
|
|
|
|
|
|
|
/** Escape the given string as an argument in a CMake script. */
|
2012-03-20 21:50:44 +00:00
|
|
|
static std::string EscapeForCMake(const char* str);
|
2008-01-18 00:58:01 +00:00
|
|
|
|
2011-08-31 14:24:43 +00:00
|
|
|
enum FortranFormat
|
|
|
|
{
|
|
|
|
FortranFormatNone,
|
|
|
|
FortranFormatFixed,
|
|
|
|
FortranFormatFree
|
|
|
|
};
|
|
|
|
FortranFormat GetFortranFormat(const char* value);
|
|
|
|
|
2007-03-07 21:32:29 +00:00
|
|
|
/**
|
|
|
|
* Convert the given remote path to a relative path with respect to
|
|
|
|
* the given local path. The local path must be given in component
|
|
|
|
* form (see SystemTools::SplitPath) without a trailing slash. The
|
|
|
|
* remote path must use forward slashes and not already be escaped
|
|
|
|
* or quoted.
|
|
|
|
*/
|
|
|
|
std::string ConvertToRelativePath(const std::vector<std::string>& local,
|
2009-09-22 20:16:56 +00:00
|
|
|
const char* remote, bool force=false);
|
2007-03-07 21:32:29 +00:00
|
|
|
|
2007-08-01 19:25:40 +00: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 04:07:14 +00: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.
|
|
|
|
*/
|
|
|
|
unsigned int GetBackwardsCompatibility();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test whether compatibility is set to a given version or lower.
|
|
|
|
*/
|
|
|
|
bool NeedBackwardsCompatibility(unsigned int major,
|
|
|
|
unsigned int minor,
|
|
|
|
unsigned int patch = 0xFFu);
|
2008-02-14 20:31:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X application bundle Info.plist file.
|
|
|
|
*/
|
|
|
|
void GenerateAppleInfoPList(cmTarget* target, const char* targetName,
|
|
|
|
const char* fname);
|
2008-09-02 16:06:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X framework Info.plist file.
|
|
|
|
*/
|
|
|
|
void GenerateFrameworkInfoPList(cmTarget* target,
|
|
|
|
const char* targetName,
|
|
|
|
const char* fname);
|
2006-04-11 15:06:19 +00:00
|
|
|
/** Construct a comment for a custom command. */
|
|
|
|
std::string ConstructComment(const cmCustomCommand& cc,
|
|
|
|
const char* default_comment = "");
|
2009-07-11 04:05:20 +00:00
|
|
|
// Compute object file names.
|
|
|
|
std::string GetObjectFileNameWithoutTarget(const cmSourceFile& source,
|
|
|
|
std::string const& dir_max,
|
|
|
|
bool* hasSourceExtension = 0);
|
2006-04-11 15:06:19 +00:00
|
|
|
|
2006-03-10 18:54:57 +00:00
|
|
|
/** Fill out these strings for the given target. Libraries to link,
|
|
|
|
* flags, and linkflags. */
|
2011-10-13 17:51:18 +00:00
|
|
|
void GetTargetFlags(std::string& linkLibs,
|
2006-02-20 19:37:24 +00:00
|
|
|
std::string& flags,
|
|
|
|
std::string& linkFlags,
|
2012-09-26 12:38:15 +00:00
|
|
|
std::string& frameworkPath,
|
|
|
|
std::string& linkPath,
|
2012-09-15 23:35:08 +00:00
|
|
|
cmGeneratorTarget* target);
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2011-07-02 15:08:34 +00:00
|
|
|
protected:
|
2006-02-20 19:37:24 +00:00
|
|
|
///! put all the libraries for a target on into the given stream
|
2012-09-26 12:38:15 +00:00
|
|
|
virtual void OutputLinkLibraries(std::string& linkLibraries,
|
|
|
|
std::string& frameworkPath,
|
|
|
|
std::string& linkPath,
|
|
|
|
cmGeneratorTarget &,
|
2012-09-15 23:35:08 +00:00
|
|
|
bool relink);
|
2011-10-13 17:51:18 +00:00
|
|
|
|
2004-10-21 18:34:02 +00:00
|
|
|
// Expand rule variables in CMake of the type found in language rules
|
|
|
|
void ExpandRuleVariables(std::string& string,
|
2006-02-20 18:42:18 +00:00
|
|
|
const RuleVariables& replaceValues);
|
2005-04-12 17:27:07 +00:00
|
|
|
// Expand rule variables in a single string
|
|
|
|
std::string ExpandRuleVariable(std::string const& variable,
|
2006-02-20 18:42:18 +00:00
|
|
|
const RuleVariables& replaceValues);
|
2009-02-10 13:51:15 +00:00
|
|
|
|
|
|
|
const char* GetRuleLauncher(cmTarget* target, const char* prop);
|
|
|
|
void InsertRuleLauncher(std::string& s, cmTarget* target,
|
|
|
|
const char* prop);
|
|
|
|
|
2011-10-13 17:51:18 +00:00
|
|
|
|
|
|
|
/** Convert a target to a utility target for unsupported
|
2006-03-10 18:54:57 +00:00
|
|
|
* languages of a generator */
|
2012-09-15 23:16:43 +00:00
|
|
|
void AddBuildTargetRule(const char* llang, cmGeneratorTarget& target);
|
2011-10-13 17:51:18 +00:00
|
|
|
///! add a custom command to build a .o file that is part of a target
|
|
|
|
void AddCustomCommandToCreateObject(const char* ofname,
|
|
|
|
const char* lang,
|
2004-10-21 18:34:02 +00:00
|
|
|
cmSourceFile& source,
|
2012-09-15 23:16:43 +00:00
|
|
|
cmGeneratorTarget& target);
|
2004-10-21 18:34:02 +00: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.
|
|
|
|
void CreateCustomTargetsAndCommands(std::set<cmStdString> const&);
|
2006-02-19 20:25:27 +00:00
|
|
|
|
|
|
|
// Handle old-style install rules stored in the targets.
|
|
|
|
void GenerateTargetInstallRules(
|
|
|
|
std::ostream& os, const char* config,
|
|
|
|
std::vector<std::string> const& configurationTypes);
|
2005-04-24 19:59:51 +00:00
|
|
|
|
2007-03-16 14:34:25 +00:00
|
|
|
std::string& CreateSafeUniqueObjectFileName(const char* sin,
|
2008-12-16 14:14:40 +00:00
|
|
|
std::string const& dir_max);
|
2009-09-03 12:26:46 +00:00
|
|
|
void ComputeObjectMaxPath();
|
2006-07-11 15:41:38 +00:00
|
|
|
|
2007-03-07 20:15:46 +00:00
|
|
|
void ConfigureRelativePaths();
|
2007-03-07 22:32:35 +00:00
|
|
|
std::string FindRelativePathTopSource();
|
|
|
|
std::string FindRelativePathTopBinary();
|
2007-03-08 13:38:40 +00:00
|
|
|
void SetupPathConversions();
|
2007-03-07 20:15:46 +00:00
|
|
|
|
2011-08-22 13:02:20 +00:00
|
|
|
virtual std::string ConvertToLinkReference(std::string const& lib);
|
2008-01-23 18:03:03 +00:00
|
|
|
|
2008-01-14 14:20:58 +00:00
|
|
|
/** Check whether the native build system supports the given
|
|
|
|
definition. Issues a warning. */
|
|
|
|
virtual bool CheckDefinition(std::string const& define) const;
|
|
|
|
|
2009-09-03 12:27:00 +00:00
|
|
|
/** Read the input CMakeLists.txt file. */
|
|
|
|
void ReadInputFile();
|
|
|
|
|
2006-03-15 16:02:08 +00:00
|
|
|
cmMakefile *Makefile;
|
|
|
|
cmGlobalGenerator *GlobalGenerator;
|
2003-12-22 20:16:46 +00:00
|
|
|
// members used for relative path function ConvertToMakefilePath
|
2006-03-15 16:02:08 +00:00
|
|
|
std::string RelativePathToSourceDir;
|
|
|
|
std::string RelativePathToBinaryDir;
|
|
|
|
std::vector<std::string> HomeDirectoryComponents;
|
|
|
|
std::vector<std::string> StartDirectoryComponents;
|
|
|
|
std::vector<std::string> HomeOutputDirectoryComponents;
|
|
|
|
std::vector<std::string> StartOutputDirectoryComponents;
|
|
|
|
cmLocalGenerator* Parent;
|
2005-03-18 15:41:41 +00:00
|
|
|
std::vector<cmLocalGenerator*> Children;
|
2006-07-11 15:41:38 +00:00
|
|
|
std::map<cmStdString, cmStdString> UniqueObjectNamesMap;
|
2008-08-21 13:54:36 +00:00
|
|
|
std::string::size_type ObjectPathMax;
|
2008-12-16 14:15:18 +00:00
|
|
|
std::set<cmStdString> ObjectMaxPathViolations;
|
2006-03-15 16:02:08 +00:00
|
|
|
bool WindowsShell;
|
2006-09-27 17:43:46 +00:00
|
|
|
bool WindowsVSIDE;
|
2006-10-25 15:23:04 +00:00
|
|
|
bool WatcomWMake;
|
2007-05-17 14:53:18 +00:00
|
|
|
bool MinGWMake;
|
2008-01-13 21:36:20 +00:00
|
|
|
bool NMake;
|
2006-03-15 16:02:08 +00:00
|
|
|
bool ForceUnixPath;
|
2006-09-28 14:37:19 +00:00
|
|
|
bool MSYSShell;
|
2008-01-30 02:16:49 +00:00
|
|
|
bool LinkScriptShell;
|
2006-03-15 16:02:08 +00:00
|
|
|
bool UseRelativePaths;
|
|
|
|
bool IgnoreLibPrefix;
|
2005-03-18 15:41:41 +00:00
|
|
|
bool Configured;
|
2006-03-24 14:15:05 +00:00
|
|
|
bool EmitUniversalBinaryFlags;
|
2007-05-09 12:25:45 +00:00
|
|
|
// A type flag is not nice. It's used only in TraceDependencies().
|
|
|
|
bool IsMakefileGenerator;
|
2006-02-18 20:37:23 +00:00
|
|
|
// Hack for ExpandRuleVariable until object-oriented version is
|
|
|
|
// committed.
|
2006-03-15 16:02:08 +00:00
|
|
|
std::string TargetImplib;
|
2007-03-07 20:15:46 +00:00
|
|
|
|
|
|
|
// The top-most directories for relative path conversion. Both the
|
|
|
|
// source and destination location of a relative path conversion
|
|
|
|
// must be underneath one of these directories (both under source or
|
|
|
|
// both under binary) in order for the relative path to be evaluated
|
|
|
|
// safely by the build tools.
|
|
|
|
std::string RelativePathTopSource;
|
|
|
|
std::string RelativePathTopBinary;
|
|
|
|
bool RelativePathsConfigured;
|
2007-03-08 13:38:40 +00:00
|
|
|
bool PathConversionsSetup;
|
2007-12-29 04:07:14 +00:00
|
|
|
|
|
|
|
unsigned int BackwardsCompatibility;
|
|
|
|
bool BackwardsCompatibilityFinal;
|
2008-10-09 19:30:07 +00:00
|
|
|
private:
|
|
|
|
std::string ConvertToOutputForExistingCommon(const char* remote,
|
|
|
|
std::string const& result);
|
2012-05-30 18:13:09 +00:00
|
|
|
|
|
|
|
void AddSharedFlags(std::string& flags, const char* lang, bool shared);
|
|
|
|
bool GetShouldUseOldFlags(bool shared, const std::string &lang) const;
|
|
|
|
void AddPositionIndependentFlags(std::string& flags, std::string const& l,
|
|
|
|
int targetType);
|
2002-08-30 20:00:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|