diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-03 21:14:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-03 21:14:06 (GMT) |
commit | d42055b283496e3259a89db9aa9074f4169bcf34 (patch) | |
tree | a2f35c6fc56e7e313c6c091b2f4903b79d922822 /Source/cmSystemTools.h | |
parent | 1c73117b7add8578bfe1abc3db7de754496e2453 (diff) | |
download | CMake-d42055b283496e3259a89db9aa9074f4169bcf34.zip CMake-d42055b283496e3259a89db9aa9074f4169bcf34.tar.gz CMake-d42055b283496e3259a89db9aa9074f4169bcf34.tar.bz2 |
ENH: fix more space problems, you can add args to the ExecProgram command separatly now
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 04ee977..62d5568 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -267,6 +267,9 @@ public: static bool RunCommand(const char* command, std::string& output, int &retVal, const char* directory = 0, bool verbose = true); + ///! for windows return the short path for the given path, unix just a pass through + static bool GetShortPath(const char* path, std::string& result); + ///! change directory the the directory specified static int ChangeDirectory(const char* dir); |