diff options
author | Brad King <brad.king@kitware.com> | 2003-11-26 19:52:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-11-26 19:52:12 (GMT) |
commit | 9a58ac6649a9e12e06306a7d23aaaf767dea0e64 (patch) | |
tree | 556502e90100c748f4874f06d2f0e2f0e606f32e /Source/cmSystemTools.h | |
parent | 725de95b7e5b2bd6c43b8dc576a0e4d256fbcb4a (diff) | |
download | CMake-9a58ac6649a9e12e06306a7d23aaaf767dea0e64.zip CMake-9a58ac6649a9e12e06306a7d23aaaf767dea0e64.tar.gz CMake-9a58ac6649a9e12e06306a7d23aaaf767dea0e64.tar.bz2 |
ENH: Added CreateSymlink method.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 2ba1906..4406b0e 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -243,7 +243,8 @@ public: //! Check if the first string ends with the second one. static bool StringEndsWith(const char* str1, const char* str2); - + + static bool CreateSymlink(const char* origName, const char* newName); private: static bool s_ForceUnixPaths; static bool s_RunCommandHideConsole; |