summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-30 02:16:49 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-30 02:16:49 (GMT)
commit52b3f85642bd54362ec84c7279e3d63047861a53 (patch)
tree4df72032fa11b810afe9cd879017c34a1f1308fc /Source/cmLocalGenerator.h
parent66e0b4212fbbaaf3c5aa5af6a51aa3a5af002edf (diff)
downloadCMake-52b3f85642bd54362ec84c7279e3d63047861a53.zip
CMake-52b3f85642bd54362ec84c7279e3d63047861a53.tar.gz
CMake-52b3f85642bd54362ec84c7279e3d63047861a53.tar.bz2
ENH: Enable use of link script whenever incremental archive construction rules are available. Enable use of archive construction rules on MSYS.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index d899747..c55f6a3 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -210,6 +210,9 @@ public:
const char* Defines;
};
+ /** Set whether to treat conversions to SHELL as a link script shell. */
+ void SetLinkScriptShell(bool b) { this->LinkScriptShell = b; }
+
/** Escape the given string to be used as a command line argument in
the native build system shell. Optionally allow the build
system to replace make variable references. Optionally adjust
@@ -346,6 +349,7 @@ protected:
bool NMake;
bool ForceUnixPath;
bool MSYSShell;
+ bool LinkScriptShell;
bool UseRelativePaths;
bool IgnoreLibPrefix;
bool Configured;