diff options
author | Brad King <brad.king@kitware.com> | 2006-06-15 20:17:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-06-15 20:17:11 (GMT) |
commit | 0bbcb49f65eb92daafc5ad87162f1ecedc3438dc (patch) | |
tree | 4889b6c00d1b1fb55a0e55c1ec17cb16edf0a4ab /Source/cmGlobalGenerator.h | |
parent | 6438bec4c9355960f47e4b853f27b548a55ec5e0 (diff) | |
download | CMake-0bbcb49f65eb92daafc5ad87162f1ecedc3438dc.zip CMake-0bbcb49f65eb92daafc5ad87162f1ecedc3438dc.tar.gz CMake-0bbcb49f65eb92daafc5ad87162f1ecedc3438dc.tar.bz2 |
ENH: Added generation of link rules into script files executed by a cmake -E command in order to support longer link lines. This is needed only on platforms without response file support and that may have weak shells.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index b60d497..7a05783 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -152,6 +152,9 @@ public: std::string ConvertToRelativePath(const std::vector<std::string>& local, const char* remote); + /** Get whether the generator should use a script for link commands. */ + bool GetUseLinkScript() { return this->UseLinkScript; } + /* * Determine what program to use for building the project. */ @@ -204,6 +207,7 @@ protected: const cmCustomCommandLines* commandLines, std::vector<std::string> depends, bool depends_on_all = false); + bool UseLinkScript; bool ForceUnixPaths; bool ToolSupportsColor; cmStdString FindMakeProgramFile; |