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"
|
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmGlobalGenerator;
|
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;
|
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
|
|
|
|
* platforms. This class should never be constructued directly. A
|
|
|
|
* GlobalGenerator will create it and invoke the appropriate commands on it.
|
|
|
|
*/
|
|
|
|
class cmLocalGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmLocalGenerator();
|
2002-09-05 17:04:55 +04:00
|
|
|
virtual ~cmLocalGenerator();
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
/**
|
2005-03-18 18:41:41 +03: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
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the CMakeLists files for this directory to fill in the
|
2006-03-15 19:02:08 +03:00
|
|
|
* Makefile ivar
|
2002-08-31 00:00:35 +04:00
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
|
2007-05-09 16:25:45 +04:00
|
|
|
/**
|
|
|
|
* Calls TraceVSDependencies() on all targets of this generator.
|
|
|
|
*/
|
|
|
|
virtual void TraceDependencies();
|
2007-05-09 22:41:38 +04:00
|
|
|
|
|
|
|
virtual void AddHelperCommands() {}
|
|
|
|
|
2002-09-15 16:54:16 +04:00
|
|
|
/**
|
|
|
|
* Perform any final calculations prior to generation
|
|
|
|
*/
|
|
|
|
virtual void ConfigureFinalPass();
|
|
|
|
|
2004-01-26 03:25:26 +03:00
|
|
|
/**
|
|
|
|
* Generate the install rules files in this directory.
|
|
|
|
*/
|
|
|
|
virtual void GenerateInstallRules();
|
|
|
|
|
2005-04-24 23:59:51 +04:00
|
|
|
/**
|
|
|
|
* Generate the test files for tests.
|
|
|
|
*/
|
|
|
|
virtual void GenerateTestFiles();
|
2006-04-04 19:48:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a manifest of target files that will be built.
|
|
|
|
*/
|
2008-01-22 17:13:04 +03:00
|
|
|
virtual 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() {
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->Makefile; };
|
2002-08-31 00:00:35 +04:00
|
|
|
|
2007-06-15 18:10:24 +04:00
|
|
|
///! Get the makefile for this generator, const version
|
|
|
|
const cmMakefile *GetMakefile() const {
|
|
|
|
return this->Makefile; };
|
|
|
|
|
2002-08-31 00:00:35 +04:00
|
|
|
///! Get the GlobalGenerator this is associated with
|
|
|
|
cmGlobalGenerator *GetGlobalGenerator() {
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->GlobalGenerator; };
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
///! Set the Global Generator, done on creation by the GlobalGenerator
|
2002-09-04 23:24:49 +04:00
|
|
|
void SetGlobalGenerator(cmGlobalGenerator *gg);
|
2004-01-26 03:25:26 +03:00
|
|
|
|
2005-05-13 17:54:30 +04:00
|
|
|
/**
|
|
|
|
* Convert something to something else. This is a centralized coversion
|
|
|
|
* routine used by the generators to handle relative paths and the like.
|
|
|
|
* The flags determine what is actually done.
|
|
|
|
*
|
|
|
|
* 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 16:49:05 +03:00
|
|
|
enum OutputFormat { UNCHANGED, MAKEFILE, SHELL, RESPONSE };
|
2008-10-09 23:30:07 +04:00
|
|
|
std::string ConvertToOutputFormat(const char* source, OutputFormat output);
|
|
|
|
std::string Convert(const char* remote, RelativeRoot local,
|
2005-05-13 17:54:30 +04:00
|
|
|
OutputFormat output = UNCHANGED,
|
|
|
|
bool optional = false);
|
2008-10-09 23:30:07 +04: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);
|
2005-05-13 17:54:30 +04:00
|
|
|
|
2005-02-25 00:04:54 +03: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);
|
|
|
|
|
2004-03-10 00:28:44 +03:00
|
|
|
///! set/get the parent generator
|
2006-03-15 19:02:08 +03:00
|
|
|
cmLocalGenerator* GetParent(){return this->Parent;}
|
|
|
|
void SetParent(cmLocalGenerator* g) { this->Parent = g; g->AddChild(this); }
|
2005-03-18 18:41:41 +03:00
|
|
|
|
|
|
|
///! set/get the children
|
|
|
|
void AddChild(cmLocalGenerator* g) { this->Children.push_back(g); }
|
|
|
|
std::vector<cmLocalGenerator*>& GetChildren() { return this->Children; };
|
|
|
|
|
2004-06-28 22:40:17 +04:00
|
|
|
|
2009-10-23 16:02:24 +04:00
|
|
|
void AddArchitectureFlags(std::string& flags, cmTarget* target,
|
|
|
|
const char *lang, const char* config);
|
2009-10-21 21:00:49 +04:00
|
|
|
|
2006-02-24 19:13:31 +03:00
|
|
|
void AddLanguageFlags(std::string& flags, const char* lang,
|
|
|
|
const char* config);
|
2005-02-02 21:19:57 +03:00
|
|
|
void AddSharedFlags(std::string& flags, const char* lang, bool shared);
|
2006-02-24 19:13:31 +03:00
|
|
|
void AddConfigVariableFlags(std::string& flags, const char* var,
|
|
|
|
const char* config);
|
2007-05-10 22:43:55 +04:00
|
|
|
virtual void AppendFlags(std::string& flags, const char* newFlags);
|
2005-02-04 01:42:55 +03:00
|
|
|
///! Get the include flags for the current makefile and language
|
2011-03-15 21:07:36 +03:00
|
|
|
const char* GetIncludeFlags(const char* lang,
|
|
|
|
bool forResponseFile = false);
|
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.
|
|
|
|
*/
|
2008-01-17 18:00:19 +03:00
|
|
|
void AppendDefines(std::string& defines, const char* defines_list,
|
|
|
|
const char* 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. */
|
|
|
|
void AppendFeatureOptions(std::string& flags, const char* lang,
|
|
|
|
const char* feature);
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
/** Translate a dependency as given in CMake code to the name to
|
|
|
|
appear in a generated build file. If the given name is that of
|
2010-12-09 01:05:23 +03:00
|
|
|
a utility target, returns false. If the given name is that of
|
2006-01-14 02:18:32 +03:00
|
|
|
a CMake target it will be transformed to the real output
|
2006-01-14 04:51:45 +03:00
|
|
|
location of that target for the given configuration. If the
|
|
|
|
given name is the full path to a file it will be returned.
|
|
|
|
Otherwise the 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-09 00:51:16 +03:00
|
|
|
bool GetRealDependency(const char* name, const char* config,
|
|
|
|
std::string& dep);
|
|
|
|
|
2005-02-15 00:46:32 +03:00
|
|
|
///! for existing files convert to output path and short path if spaces
|
2008-10-09 23:30:07 +04: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);
|
2005-02-15 00:46:32 +03:00
|
|
|
|
2007-12-20 00:36:30 +03:00
|
|
|
/** Called from command-line hook to clear dependencies. */
|
|
|
|
virtual void ClearDependencies(cmMakefile* /* mf */,
|
|
|
|
bool /* verbose */) {}
|
2005-06-10 18:45:08 +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,
|
|
|
|
const char* lang = "C");
|
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. */
|
|
|
|
const char* GetSourceFileLanguage(const cmSourceFile& source);
|
|
|
|
|
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;
|
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;
|
2006-02-20 21:42:18 +03:00
|
|
|
const char* Flags;
|
|
|
|
const char* ObjectsQuoted;
|
|
|
|
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;
|
2006-02-20 21:42:18 +03:00
|
|
|
};
|
2006-02-20 22:37:24 +03:00
|
|
|
|
2008-01-30 05:16:49 +03:00
|
|
|
/** Set whether to treat conversions to SHELL as a link script shell. */
|
|
|
|
void SetLinkScriptShell(bool b) { this->LinkScriptShell = b; }
|
|
|
|
|
2006-09-21 23:14:06 +04:00
|
|
|
/** Escape the given string to be used as a command line argument in
|
2006-09-27 21:43:46 +04:00
|
|
|
the native build system shell. Optionally allow the build
|
2006-10-05 02:52:29 +04: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 21:43:46 +04:00
|
|
|
|
|
|
|
/** Backwards-compatibility version of EscapeForShell. */
|
|
|
|
std::string EscapeForShellOldStyle(const char* str);
|
2008-01-18 03:58:01 +03:00
|
|
|
|
|
|
|
/** Escape the given string as an argument in a CMake script. */
|
|
|
|
std::string EscapeForCMake(const char* str);
|
|
|
|
|
2007-02-17 00:12:17 +03:00
|
|
|
/** Return the directories into which object files will be put.
|
|
|
|
* There maybe more than one for fat binary systems like OSX.
|
|
|
|
*/
|
|
|
|
virtual void
|
|
|
|
GetTargetObjectFileDirectories(cmTarget* target,
|
|
|
|
std::vector<std::string>&
|
|
|
|
dirs);
|
|
|
|
|
2007-03-08 00:32:29 +03: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-23 00:16:56 +04:00
|
|
|
const char* remote, bool force=false);
|
2007-03-08 00:32:29 +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.
|
|
|
|
*/
|
|
|
|
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 23:31:08 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X application bundle Info.plist file.
|
|
|
|
*/
|
|
|
|
void GenerateAppleInfoPList(cmTarget* target, const char* targetName,
|
|
|
|
const char* fname);
|
2008-09-02 20:06:32 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X framework Info.plist file.
|
|
|
|
*/
|
|
|
|
void GenerateFrameworkInfoPList(cmTarget* target,
|
|
|
|
const char* targetName,
|
|
|
|
const char* fname);
|
2006-04-11 19:06:19 +04:00
|
|
|
/** Construct a comment for a custom command. */
|
|
|
|
std::string ConstructComment(const cmCustomCommand& cc,
|
|
|
|
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
|
|
|
|
2006-03-10 21:54:57 +03:00
|
|
|
/** Fill out these strings for the given target. Libraries to link,
|
|
|
|
* flags, and linkflags. */
|
2006-02-20 22:37:24 +03:00
|
|
|
void GetTargetFlags(std::string& linkLibs,
|
|
|
|
std::string& flags,
|
|
|
|
std::string& linkFlags,
|
|
|
|
cmTarget&target);
|
|
|
|
|
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
|
|
|
|
virtual void OutputLinkLibraries(std::ostream&, cmTarget&, bool relink);
|
2007-11-27 01:57:39 +03: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
|
|
|
|
|
|
|
const char* GetRuleLauncher(cmTarget* target, const char* prop);
|
|
|
|
void InsertRuleLauncher(std::string& s, cmTarget* target,
|
|
|
|
const char* prop);
|
|
|
|
|
2005-04-12 21:27:07 +04:00
|
|
|
|
2006-03-10 21:54:57 +03:00
|
|
|
/** Convert a target to a utility target for unsupported
|
|
|
|
* languages of a generator */
|
2004-10-21 22:34:02 +04:00
|
|
|
void AddBuildTargetRule(const char* llang, cmTarget& target);
|
|
|
|
///! add a custom command to build a .o file that is part of a target
|
|
|
|
void AddCustomCommandToCreateObject(const char* ofname,
|
|
|
|
const char* lang,
|
|
|
|
cmSourceFile& source,
|
|
|
|
cmTarget& target);
|
|
|
|
// 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 23:25:27 +03: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 23:59:51 +04:00
|
|
|
|
2007-03-16 17:34:25 +03:00
|
|
|
std::string& CreateSafeUniqueObjectFileName(const char* sin,
|
2008-12-16 17:14:40 +03:00
|
|
|
std::string const& dir_max);
|
2009-09-03 16:26:46 +04:00
|
|
|
void ComputeObjectMaxPath();
|
2006-07-11 19:41:38 +04:00
|
|
|
|
2007-03-07 23:15:46 +03:00
|
|
|
void ConfigureRelativePaths();
|
2007-03-08 01:32:35 +03:00
|
|
|
std::string FindRelativePathTopSource();
|
|
|
|
std::string FindRelativePathTopBinary();
|
2007-03-08 16:38:40 +03:00
|
|
|
void SetupPathConversions();
|
2007-03-07 23:15:46 +03:00
|
|
|
|
2008-01-23 21:03:03 +03:00
|
|
|
std::string ConvertToLinkReference(std::string const& lib);
|
|
|
|
|
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;
|
|
|
|
|
2009-09-03 16:27:00 +04:00
|
|
|
/** Read the input CMakeLists.txt file. */
|
|
|
|
void ReadInputFile();
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
cmMakefile *Makefile;
|
|
|
|
cmGlobalGenerator *GlobalGenerator;
|
2003-12-22 23:16:46 +03:00
|
|
|
// members used for relative path function ConvertToMakefilePath
|
2006-03-15 19:02:08 +03: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 18:41:41 +03:00
|
|
|
std::vector<cmLocalGenerator*> Children;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::map<cmStdString, cmStdString> LanguageToIncludeFlags;
|
2006-07-11 19:41:38 +04:00
|
|
|
std::map<cmStdString, cmStdString> UniqueObjectNamesMap;
|
2008-08-21 17:54:36 +04:00
|
|
|
std::string::size_type ObjectPathMax;
|
2008-12-16 17:15:18 +03:00
|
|
|
std::set<cmStdString> ObjectMaxPathViolations;
|
2006-03-15 19:02:08 +03:00
|
|
|
bool WindowsShell;
|
2006-09-27 21:43:46 +04:00
|
|
|
bool WindowsVSIDE;
|
2006-10-25 19:23:04 +04:00
|
|
|
bool WatcomWMake;
|
2007-05-17 18:53:18 +04:00
|
|
|
bool MinGWMake;
|
2008-01-14 00:36:20 +03:00
|
|
|
bool NMake;
|
2006-03-15 19:02:08 +03:00
|
|
|
bool ForceUnixPath;
|
2006-09-28 18:37:19 +04:00
|
|
|
bool MSYSShell;
|
2008-01-30 05:16:49 +03:00
|
|
|
bool LinkScriptShell;
|
2006-03-15 19:02:08 +03:00
|
|
|
bool UseRelativePaths;
|
|
|
|
bool IgnoreLibPrefix;
|
2005-03-18 18:41:41 +03:00
|
|
|
bool Configured;
|
2006-03-24 17:15:05 +03:00
|
|
|
bool EmitUniversalBinaryFlags;
|
2007-05-09 16:25:45 +04:00
|
|
|
// A type flag is not nice. It's used only in TraceDependencies().
|
|
|
|
bool IsMakefileGenerator;
|
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
|
|
|
|
|
|
|
// 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 16:38:40 +03:00
|
|
|
bool PathConversionsSetup;
|
2007-12-29 07:07:14 +03:00
|
|
|
|
|
|
|
unsigned int BackwardsCompatibility;
|
|
|
|
bool BackwardsCompatibilityFinal;
|
2008-10-09 23:30:07 +04:00
|
|
|
private:
|
|
|
|
std::string ConvertToOutputForExistingCommon(const char* remote,
|
|
|
|
std::string const& result);
|
2002-08-31 00:00:35 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|