diff options
author | Brad King <brad.king@kitware.com> | 2009-07-13 20:22:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-13 20:22:48 (GMT) |
commit | 3dd6f36d459571246ca12a27ad732a8109ac6916 (patch) | |
tree | 8f74befa1a121de7bb46f01884c7ef5e33d6c9dc /Source/cmSystemTools.h | |
parent | 18e639d48a658dff76f47e8fcb3815776ee35c33 (diff) | |
download | CMake-3dd6f36d459571246ca12a27ad732a8109ac6916.zip CMake-3dd6f36d459571246ca12a27ad732a8109ac6916.tar.gz CMake-3dd6f36d459571246ca12a27ad732a8109ac6916.tar.bz2 |
ENH: Add cmSystemTools::ParseUnixCommandLine
This method is a C++ wrapper around the KWSys System library function to
parse unix-style command lines.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 486dcee..9d7efe4 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -239,6 +239,10 @@ public: static void ParseWindowsCommandLine(const char* command, std::vector<std::string>& args); + /** Parse arguments out of a unix command line string. */ + static void ParseUnixCommandLine(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, |