diff options
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 44aa79a..1f273b9 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -202,8 +202,12 @@ public: }; /** Escape the given string to be used as a command line argument in - the native build system shell. */ - std::string EscapeForShell(const char* str); + the native build system shell. Optionally allow the build + system to replace make variable references. */ + std::string EscapeForShell(const char* str, bool makeVars = false); + + /** Backwards-compatibility version of EscapeForShell. */ + std::string EscapeForShellOldStyle(const char* str); protected: @@ -267,6 +271,7 @@ protected: std::map<cmStdString, cmStdString> LanguageToIncludeFlags; std::map<cmStdString, cmStdString> UniqueObjectNamesMap; bool WindowsShell; + bool WindowsVSIDE; bool ForceUnixPath; bool UseRelativePaths; bool IgnoreLibPrefix; |