diff options
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 4997bc3..6165d98 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -211,7 +211,16 @@ public: * Parse arguments out of a single string command */ static std::vector<cmStdString> ParseArguments(const char* command); - + + /** Parse arguments out of a windows command line string. */ + static void ParseWindowsCommandLine(const char* command, + std::vector<std::string>& args); + + /** Compute an escaped version of the given argument for use in a + windows shell. See kwsys/System.h.in for details. */ + static std::string EscapeWindowsShellArgument(const char* arg, + int shell_flags); + static void EnableMessages() { s_DisableMessages = false; } static void DisableMessages() { s_DisableMessages = true; } static void DisableRunCommandOutput() {s_DisableRunCommandOutput = true; } |