diff options
author | Brad King <brad.king@kitware.com> | 2007-05-17 14:53:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-17 14:53:18 (GMT) |
commit | c25d2bfdd2c81076bf637ae1b2aee711d9e6424d (patch) | |
tree | d8832b6899273a77800958ab852cbd5d2631c73c /Source/cmLocalGenerator.cxx | |
parent | cc507411d3641297ed9fff7789cd4121dbe849b3 (diff) | |
download | CMake-c25d2bfdd2c81076bf637ae1b2aee711d9e6424d.zip CMake-c25d2bfdd2c81076bf637ae1b2aee711d9e6424d.tar.gz CMake-c25d2bfdd2c81076bf637ae1b2aee711d9e6424d.tar.bz2 |
ENH: Added testing for custom command line arguments containing all special characters on the US keyboard. Fixed curly brace arguments on borland and % arguments in mingw32-make.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 90fcb7b..c7c727b 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -47,6 +47,7 @@ cmLocalGenerator::cmLocalGenerator() this->WindowsShell = false; this->WindowsVSIDE = false; this->WatcomWMake = false; + this->MinGWMake = false; this->MSYSShell = false; this->IgnoreLibPrefix = false; this->UseRelativePaths = false; @@ -2772,6 +2773,10 @@ std::string cmLocalGenerator::EscapeForShell(const char* str, bool makeVars, { flags |= cmsysSystem_Shell_Flag_WatcomWMake; } + if(this->MinGWMake) + { + flags |= cmsysSystem_Shell_Flag_MinGWMake; + } // Compute the buffer size needed. int size = (this->WindowsShell ? |