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"
|
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmGlobalGenerator;
|
2004-01-25 19:25:26 -05:00
|
|
|
class cmTarget;
|
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;
|
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
|
|
|
|
* 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 09:04:55 -04:00
|
|
|
virtual ~cmLocalGenerator();
|
2002-08-30 16:00:35 -04:00
|
|
|
|
|
|
|
/**
|
2005-03-18 10:41:41 -05: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
|
|
|
|
|
|
|
/**
|
|
|
|
* Process the CMakeLists files for this directory to fill in the
|
2006-03-15 11:02:08 -05:00
|
|
|
* Makefile ivar
|
2002-08-30 16:00:35 -04:00
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
|
2007-05-09 08:25:45 -04:00
|
|
|
/**
|
|
|
|
* Calls TraceVSDependencies() on all targets of this generator.
|
|
|
|
*/
|
|
|
|
virtual void TraceDependencies();
|
2007-05-09 14:41:38 -04:00
|
|
|
|
|
|
|
virtual void AddHelperCommands() {}
|
|
|
|
|
2002-09-15 08:54:16 -04:00
|
|
|
/**
|
|
|
|
* Perform any final calculations prior to generation
|
|
|
|
*/
|
|
|
|
virtual void ConfigureFinalPass();
|
|
|
|
|
2004-01-25 19:25:26 -05:00
|
|
|
/**
|
|
|
|
* Generate the install rules files in this directory.
|
|
|
|
*/
|
|
|
|
virtual void GenerateInstallRules();
|
|
|
|
|
2005-04-24 15:59:51 -04:00
|
|
|
/**
|
|
|
|
* Generate the test files for tests.
|
|
|
|
*/
|
|
|
|
virtual void GenerateTestFiles();
|
2006-04-04 11:48:19 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a manifest of target files that will be built.
|
|
|
|
*/
|
2008-01-22 09:13:04 -05:00
|
|
|
virtual void GenerateTargetManifest();
|
2005-04-24 15:59:51 -04:00
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
///! Get the makefile for this generator
|
|
|
|
cmMakefile *GetMakefile() {
|
2006-03-15 11:02:08 -05:00
|
|
|
return this->Makefile; };
|
2002-08-30 16:00:35 -04:00
|
|
|
|
2007-06-15 10:10:24 -04:00
|
|
|
///! Get the makefile for this generator, const version
|
|
|
|
const cmMakefile *GetMakefile() const {
|
|
|
|
return this->Makefile; };
|
|
|
|
|
2002-08-30 16:00:35 -04:00
|
|
|
///! Get the GlobalGenerator this is associated with
|
|
|
|
cmGlobalGenerator *GetGlobalGenerator() {
|
2006-03-15 11:02:08 -05:00
|
|
|
return this->GlobalGenerator; };
|
2002-08-30 16:00:35 -04:00
|
|
|
|
|
|
|
///! Set the Global Generator, done on creation by the GlobalGenerator
|
2002-09-04 15:24:49 -04:00
|
|
|
void SetGlobalGenerator(cmGlobalGenerator *gg);
|
2004-01-25 19:25:26 -05:00
|
|
|
|
2005-05-13 09: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 08:49:05 -05:00
|
|
|
enum OutputFormat { UNCHANGED, MAKEFILE, SHELL, RESPONSE };
|
2008-10-09 15:30:07 -04:00
|
|
|
std::string ConvertToOutputFormat(const char* source, OutputFormat output);
|
|
|
|
std::string Convert(const char* remote, RelativeRoot local,
|
2005-05-13 09:54:30 -04:00
|
|
|
OutputFormat output = UNCHANGED,
|
|
|
|
bool optional = false);
|
2008-10-09 15: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 09:54:30 -04:00
|
|
|
|
2005-02-24 16:04:54 -05: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-09 16:28:44 -05:00
|
|
|
///! set/get the parent generator
|
2006-03-15 11:02:08 -05:00
|
|
|
cmLocalGenerator* GetParent(){return this->Parent;}
|
|
|
|
void SetParent(cmLocalGenerator* g) { this->Parent = g; g->AddChild(this); }
|
2005-03-18 10:41:41 -05:00
|
|
|
|
|
|
|
///! set/get the children
|
|
|
|
void AddChild(cmLocalGenerator* g) { this->Children.push_back(g); }
|
|
|
|
std::vector<cmLocalGenerator*>& GetChildren() { return this->Children; };
|
|
|
|
|
2004-06-28 14:40:17 -04:00
|
|
|
|
2009-10-23 08:02:24 -04:00
|
|
|
void AddArchitectureFlags(std::string& flags, cmTarget* target,
|
|
|
|
const char *lang, const char* config);
|
2009-10-21 13:00:49 -04:00
|
|
|
|
2006-02-24 11:13:31 -05:00
|
|
|
void AddLanguageFlags(std::string& flags, const char* lang,
|
|
|
|
const char* config);
|
2005-02-02 13:19:57 -05:00
|
|
|
void AddSharedFlags(std::string& flags, const char* lang, bool shared);
|
2006-02-24 11:13:31 -05:00
|
|
|
void AddConfigVariableFlags(std::string& flags, const char* var,
|
|
|
|
const char* config);
|
2007-05-10 14:43:55 -04:00
|
|
|
virtual void AppendFlags(std::string& flags, const char* newFlags);
|
2005-02-03 17:42:55 -05:00
|
|
|
///! Get the include flags for the current makefile and language
|
2011-03-15 14:07:36 -04:00
|
|
|
const char* GetIncludeFlags(const char* lang,
|
|
|
|
bool forResponseFile = false);
|
2005-02-02 13:19:57 -05:00
|
|
|
|
2008-01-14 09:20:58 -05:00
|
|
|
/**
|
|
|
|
* Encode a list of preprocessor definitions for the compiler
|
|
|
|
* command line.
|
|
|
|
*/
|
2008-01-17 10:00:19 -05:00
|
|
|
void AppendDefines(std::string& defines, const char* defines_list,
|
|
|
|
const char* 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. */
|
|
|
|
void AppendFeatureOptions(std::string& flags, const char* lang,
|
|
|
|
const char* feature);
|
|
|
|
|
2006-01-13 18:18:32 -05: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-08 17:05:23 -05:00
|
|
|
a utility target, returns false. If the given name is that of
|
2006-01-13 18:18:32 -05:00
|
|
|
a CMake target it will be transformed to the real output
|
2006-01-13 20:51:45 -05: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-08 16:51:16 -05:00
|
|
|
bool GetRealDependency(const char* name, const char* config,
|
|
|
|
std::string& dep);
|
|
|
|
|
2005-02-14 16:46:32 -05:00
|
|
|
///! for existing files convert to output path and short path if spaces
|
2008-10-09 15: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-14 16:46:32 -05:00
|
|
|
|
2007-12-19 16:36:30 -05:00
|
|
|
/** Called from command-line hook to clear dependencies. */
|
|
|
|
virtual void ClearDependencies(cmMakefile* /* mf */,
|
|
|
|
bool /* verbose */) {}
|
2005-06-10 10:45:08 -04:00
|
|
|
|
2007-12-19 16:36:30 -05:00
|
|
|
/** Called from command-line hook to update dependencies. */
|
|
|
|
virtual bool UpdateDependencies(const char* /* tgtInfo */,
|
2007-12-19 17:15:41 -05:00
|
|
|
bool /*verbose*/,
|
|
|
|
bool /*color*/)
|
2007-12-19 16:36:30 -05: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,
|
|
|
|
const char* lang = "C");
|
2006-02-20 09:54:25 -05:00
|
|
|
|
2006-08-03 09:26:07 -04:00
|
|
|
/** Compute the language used to compile the given source file. */
|
|
|
|
const char* GetSourceFileLanguage(const cmSourceFile& source);
|
|
|
|
|
2006-02-20 13:42:18 -05:00
|
|
|
// Create a struct to hold the varibles passed into
|
|
|
|
// ExpandRuleVariables
|
|
|
|
struct RuleVariables
|
|
|
|
{
|
|
|
|
RuleVariables()
|
|
|
|
{
|
2006-08-08 13:44:25 -04:00
|
|
|
memset(this, 0, sizeof(*this));
|
2006-02-20 13:42:18 -05:00
|
|
|
}
|
2009-02-10 08:51:15 -05:00
|
|
|
cmTarget* CMTarget;
|
2006-04-19 16:36:14 -04:00
|
|
|
const char* TargetPDB;
|
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;
|
2006-02-20 13:42:18 -05:00
|
|
|
const char* Flags;
|
|
|
|
const char* ObjectsQuoted;
|
|
|
|
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;
|
2006-03-06 15:14:23 -05:00
|
|
|
const char* LanguageCompileFlags;
|
2008-01-14 09:20:58 -05:00
|
|
|
const char* Defines;
|
2009-02-10 08:51:15 -05:00
|
|
|
const char* RuleLauncher;
|
2006-02-20 13:42:18 -05:00
|
|
|
};
|
2006-02-20 14:37:24 -05:00
|
|
|
|
2008-01-29 21:16:49 -05:00
|
|
|
/** Set whether to treat conversions to SHELL as a link script shell. */
|
|
|
|
void SetLinkScriptShell(bool b) { this->LinkScriptShell = b; }
|
|
|
|
|
2006-09-21 15:14:06 -04:00
|
|
|
/** Escape the given string to be used as a command line argument in
|
2006-09-27 13:43:46 -04:00
|
|
|
the native build system shell. Optionally allow the build
|
2006-10-04 18: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 13:43:46 -04:00
|
|
|
|
|
|
|
/** Backwards-compatibility version of EscapeForShell. */
|
|
|
|
std::string EscapeForShellOldStyle(const char* str);
|
2008-01-17 19:58:01 -05:00
|
|
|
|
|
|
|
/** Escape the given string as an argument in a CMake script. */
|
|
|
|
std::string EscapeForCMake(const char* str);
|
|
|
|
|
2007-02-16 16:12:17 -05: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-07 16:32:29 -05: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 16:16:56 -04:00
|
|
|
const char* remote, bool force=false);
|
2007-03-07 16:32:29 -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.
|
|
|
|
*/
|
|
|
|
virtual std::string GetTargetDirectory(cmTarget const& target) const;
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
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 15:31:08 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a Mac OS X application bundle Info.plist file.
|
|
|
|
*/
|
|
|
|
void GenerateAppleInfoPList(cmTarget* target, const char* targetName,
|
|
|
|
const char* fname);
|
2008-09-02 12: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 11:06:19 -04:00
|
|
|
/** Construct a comment for a custom command. */
|
|
|
|
std::string ConstructComment(const cmCustomCommand& cc,
|
|
|
|
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
|
|
|
|
2009-06-25 16:41:57 -04:00
|
|
|
protected:
|
2006-03-10 13:54:57 -05:00
|
|
|
/** Fill out these strings for the given target. Libraries to link,
|
|
|
|
* flags, and linkflags. */
|
2006-02-20 14:37:24 -05:00
|
|
|
void GetTargetFlags(std::string& linkLibs,
|
|
|
|
std::string& flags,
|
|
|
|
std::string& linkFlags,
|
|
|
|
cmTarget&target);
|
|
|
|
|
|
|
|
///! put all the libraries for a target on into the given stream
|
|
|
|
virtual void OutputLinkLibraries(std::ostream&, cmTarget&, bool relink);
|
2007-11-26 17:57:39 -05: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
|
|
|
|
|
|
|
const char* GetRuleLauncher(cmTarget* target, const char* prop);
|
|
|
|
void InsertRuleLauncher(std::string& s, cmTarget* target,
|
|
|
|
const char* prop);
|
|
|
|
|
2005-04-12 13:27:07 -04:00
|
|
|
|
2006-03-10 13:54:57 -05:00
|
|
|
/** Convert a target to a utility target for unsupported
|
|
|
|
* languages of a generator */
|
2004-10-21 14: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 15:25:27 -05: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 15:59:51 -04:00
|
|
|
|
2007-03-16 10:34:25 -04:00
|
|
|
std::string& CreateSafeUniqueObjectFileName(const char* sin,
|
2008-12-16 09:14:40 -05:00
|
|
|
std::string const& dir_max);
|
2009-09-03 08:26:46 -04:00
|
|
|
void ComputeObjectMaxPath();
|
2006-07-11 11:41:38 -04:00
|
|
|
|
2007-03-07 15:15:46 -05:00
|
|
|
void ConfigureRelativePaths();
|
2007-03-07 17:32:35 -05:00
|
|
|
std::string FindRelativePathTopSource();
|
|
|
|
std::string FindRelativePathTopBinary();
|
2007-03-08 08:38:40 -05:00
|
|
|
void SetupPathConversions();
|
2007-03-07 15:15:46 -05:00
|
|
|
|
2008-01-23 13:03:03 -05:00
|
|
|
std::string ConvertToLinkReference(std::string const& lib);
|
|
|
|
|
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;
|
|
|
|
|
2009-09-03 08:27:00 -04:00
|
|
|
/** Read the input CMakeLists.txt file. */
|
|
|
|
void ReadInputFile();
|
|
|
|
|
2006-03-15 11:02:08 -05:00
|
|
|
cmMakefile *Makefile;
|
|
|
|
cmGlobalGenerator *GlobalGenerator;
|
2003-12-22 15:16:46 -05:00
|
|
|
// members used for relative path function ConvertToMakefilePath
|
2006-03-15 11:02:08 -05: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 10:41:41 -05:00
|
|
|
std::vector<cmLocalGenerator*> Children;
|
2006-03-15 11:02:08 -05:00
|
|
|
std::map<cmStdString, cmStdString> LanguageToIncludeFlags;
|
2006-07-11 11:41:38 -04:00
|
|
|
std::map<cmStdString, cmStdString> UniqueObjectNamesMap;
|
2008-08-21 09:54:36 -04:00
|
|
|
std::string::size_type ObjectPathMax;
|
2008-12-16 09:15:18 -05:00
|
|
|
std::set<cmStdString> ObjectMaxPathViolations;
|
2006-03-15 11:02:08 -05:00
|
|
|
bool WindowsShell;
|
2006-09-27 13:43:46 -04:00
|
|
|
bool WindowsVSIDE;
|
2006-10-25 11:23:04 -04:00
|
|
|
bool WatcomWMake;
|
2007-05-17 10:53:18 -04:00
|
|
|
bool MinGWMake;
|
2008-01-13 16:36:20 -05:00
|
|
|
bool NMake;
|
2006-03-15 11:02:08 -05:00
|
|
|
bool ForceUnixPath;
|
2006-09-28 10:37:19 -04:00
|
|
|
bool MSYSShell;
|
2008-01-29 21:16:49 -05:00
|
|
|
bool LinkScriptShell;
|
2006-03-15 11:02:08 -05:00
|
|
|
bool UseRelativePaths;
|
|
|
|
bool IgnoreLibPrefix;
|
2005-03-18 10:41:41 -05:00
|
|
|
bool Configured;
|
2006-03-24 09:15:05 -05:00
|
|
|
bool EmitUniversalBinaryFlags;
|
2007-05-09 08:25:45 -04:00
|
|
|
// A type flag is not nice. It's used only in TraceDependencies().
|
|
|
|
bool IsMakefileGenerator;
|
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
|
|
|
|
|
|
|
// 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 08:38:40 -05:00
|
|
|
bool PathConversionsSetup;
|
2007-12-28 23:07:14 -05:00
|
|
|
|
|
|
|
unsigned int BackwardsCompatibility;
|
|
|
|
bool BackwardsCompatibilityFinal;
|
2008-10-09 15:30:07 -04:00
|
|
|
private:
|
|
|
|
std::string ConvertToOutputForExistingCommon(const char* remote,
|
|
|
|
std::string const& result);
|
2002-08-30 16:00:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|