2002-08-30 20:00:35 +00:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-08-30 20:00:35 +00:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-23 22:03:27 +00:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-08-30 20:00:35 +00:00
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmLocalGenerator_h
|
|
|
|
#define cmLocalGenerator_h
|
|
|
|
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
|
|
|
class cmMakefile;
|
|
|
|
class cmGlobalGenerator;
|
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
|
|
|
|
* 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 13:04:55 +00:00
|
|
|
virtual ~cmLocalGenerator();
|
2002-08-30 20:00:35 +00:00
|
|
|
|
|
|
|
/**
|
2005-03-18 15:41:41 +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
|
2006-03-15 16:02:08 +00:00
|
|
|
* Makefile ivar
|
2002-08-30 20:00:35 +00:00
|
|
|
*/
|
|
|
|
virtual void Configure();
|
|
|
|
|
2007-05-09 12:25:45 +00:00
|
|
|
/**
|
|
|
|
* Calls TraceVSDependencies() on all targets of this generator.
|
|
|
|
*/
|
|
|
|
virtual 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
|
|
|
|
*/
|
|
|
|
virtual void ConfigureFinalPass();
|
|
|
|
|
2004-01-26 00:25:26 +00:00
|
|
|
/**
|
|
|
|
* Generate the install rules files in this directory.
|
|
|
|
*/
|
|
|
|
virtual void GenerateInstallRules();
|
|
|
|
|
2005-04-24 19:59:51 +00:00
|
|
|
/**
|
|
|
|
* Generate the test files for tests.
|
|
|
|
*/
|
|
|
|
virtual void GenerateTestFiles();
|
2006-04-04 15:48:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a manifest of target files that will be built.
|
|
|
|
*/
|
|
|
|
virtual void GenerateTargetManifest(cmTargetManifest&);
|
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; };
|
2002-08-30 20:00:35 +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; };
|
|
|
|
|
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; };
|
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
|
|
|
|
2005-05-13 13:54:30 +00: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 };
|
|
|
|
enum OutputFormat { UNCHANGED, MAKEFILE, SHELL };
|
|
|
|
std::string Convert(const char* source,
|
|
|
|
RelativeRoot relative,
|
|
|
|
OutputFormat output = UNCHANGED,
|
|
|
|
bool optional = false);
|
|
|
|
|
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);
|
|
|
|
|
2004-03-09 21:28:44 +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; };
|
|
|
|
|
2004-06-28 18:40:17 +00:00
|
|
|
|
2006-02-24 16:13:31 +00:00
|
|
|
void AddLanguageFlags(std::string& flags, const char* lang,
|
|
|
|
const char* config);
|
2005-02-02 18:19:57 +00:00
|
|
|
void AddSharedFlags(std::string& flags, const char* lang, bool shared);
|
2006-02-24 16:13:31 +00:00
|
|
|
void AddConfigVariableFlags(std::string& flags, const char* var,
|
|
|
|
const char* config);
|
2007-05-10 18:43:55 +00:00
|
|
|
virtual void AppendFlags(std::string& flags, const char* newFlags);
|
2005-02-03 22:42:55 +00:00
|
|
|
///! Get the include flags for the current makefile and language
|
|
|
|
const char* GetIncludeFlags(const char* lang);
|
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.
|
|
|
|
*/
|
2008-01-17 15:00:19 +00:00
|
|
|
void AppendDefines(std::string& defines, const char* defines_list,
|
|
|
|
const char* lang);
|
2008-01-14 14:20:58 +00:00
|
|
|
|
2006-01-13 23:18:32 +00: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
|
|
|
|
a CMake target it will be transformed to the real output
|
2006-01-14 01:51:45 +00: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. */
|
|
|
|
std::string GetRealDependency(const char* name, const char* config);
|
2007-05-09 12:25:45 +00:00
|
|
|
|
|
|
|
/** Translate a command as given in CMake code to the location of the
|
|
|
|
executable if the command is the name of a CMake executable target.
|
|
|
|
If that's not the case, just return the original name. */
|
|
|
|
std::string GetRealLocation(const char* inName, const char* config);
|
2006-01-13 23:18:32 +00:00
|
|
|
|
2005-02-14 21:46:32 +00:00
|
|
|
///! for existing files convert to output path and short path if spaces
|
|
|
|
std::string ConvertToOutputForExisting(const char* p);
|
|
|
|
|
2007-12-19 21:36:30 +00:00
|
|
|
/** Called from command-line hook to clear dependencies. */
|
|
|
|
virtual void ClearDependencies(cmMakefile* /* mf */,
|
|
|
|
bool /* verbose */) {}
|
2005-06-10 14:45:08 +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-01-13 23:18:32 +00:00
|
|
|
/** Compute the list of link libraries and directories for the given
|
|
|
|
target and configuration. */
|
|
|
|
void ComputeLinkInformation(cmTarget& target, const char* config,
|
|
|
|
std::vector<cmStdString>& outLibs,
|
|
|
|
std::vector<cmStdString>& outDirs,
|
|
|
|
std::vector<cmStdString>* fullPathLibs=0);
|
|
|
|
|
2006-02-20 14:54:25 +00:00
|
|
|
/** Get the include flags for the current makefile and language. */
|
2006-09-28 13:49:40 +00:00
|
|
|
void GetIncludeDirectories(std::vector<std::string>& dirs,
|
|
|
|
bool filter_system_dirs = true);
|
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);
|
|
|
|
|
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
|
|
|
}
|
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;
|
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;
|
|
|
|
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;
|
2006-02-20 18:42:18 +00:00
|
|
|
};
|
2006-02-20 19:37:24 +00:00
|
|
|
|
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);
|
2007-02-16 21:12:17 +00: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 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,
|
|
|
|
const char* remote);
|
|
|
|
|
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-18 22:50:27 +00:00
|
|
|
///! Determine the arguments for the linker call, used also by
|
|
|
|
/// cmInstallTargetGenerator
|
|
|
|
bool GetLinkerArgs(std::string& rpath, std::string& linkLibs,
|
2007-12-19 08:56:13 +00:00
|
|
|
cmTarget& tgt, bool relink, unsigned int minRpathSize);
|
2007-12-18 22:50:27 +00:00
|
|
|
|
|
|
|
bool IsChrpathAvailable(const cmTarget& target);
|
|
|
|
|
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);
|
2006-09-21 20:10:47 +00:00
|
|
|
protected:
|
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 = "");
|
|
|
|
|
2006-03-10 18:54:57 +00:00
|
|
|
/** Fill out these strings for the given target. Libraries to link,
|
|
|
|
* flags, and linkflags. */
|
2006-02-20 19:37:24 +00: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 22:57:39 +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);
|
2005-04-12 17:27:07 +00:00
|
|
|
|
2006-03-10 18:54:57 +00:00
|
|
|
/** Convert a target to a utility target for unsupported
|
|
|
|
* languages of a generator */
|
2004-10-21 18:34:02 +00: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 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
|
|
|
|
2006-07-11 15:41:38 +00:00
|
|
|
// Compute object file names.
|
2007-03-16 14:34:25 +00:00
|
|
|
std::string GetObjectFileNameWithoutTarget(const cmSourceFile& source,
|
2008-01-07 21:12:37 +00:00
|
|
|
std::string::size_type dir_len,
|
|
|
|
bool* hasSourceExtension = 0);
|
2007-03-16 14:34:25 +00:00
|
|
|
std::string& CreateSafeUniqueObjectFileName(const char* sin,
|
|
|
|
std::string::size_type dir_len);
|
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
|
|
|
|
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;
|
|
|
|
|
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-03-15 16:02:08 +00:00
|
|
|
std::map<cmStdString, cmStdString> LanguageToIncludeFlags;
|
2006-07-11 15:41:38 +00:00
|
|
|
std::map<cmStdString, cmStdString> UniqueObjectNamesMap;
|
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;
|
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;
|
2002-08-30 20:00:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|