diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-29 17:19:13 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-12-29 17:19:13 (GMT) |
commit | abe4fd77fc0e85c1e6ffaa25941414c83b090ea7 (patch) | |
tree | 468f9103e85ab601b62d821a4323b8c3f7585bf2 /Source/cmSystemTools.h | |
parent | 64b5118c78e4e56a7967166b3df2e1bfe73fa36b (diff) | |
download | CMake-abe4fd77fc0e85c1e6ffaa25941414c83b090ea7.zip CMake-abe4fd77fc0e85c1e6ffaa25941414c83b090ea7.tar.gz CMake-abe4fd77fc0e85c1e6ffaa25941414c83b090ea7.tar.bz2 |
ENH: Make the syntax more line tar
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 3103300..181d513 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -298,8 +298,9 @@ public: static bool PutEnv(const char* value); /** Create tar */ - static bool CreateTar(const char* outFileName, const std::vector<cmStdString>& files); - static bool ExtractTar(const char* inFileName, const std::vector<cmStdString>& files); + static bool ListTar(const char* outFileName, std::vector<cmStdString>& files, bool gzip, bool verbose); + static bool CreateTar(const char* outFileName, const std::vector<cmStdString>& files, bool gzip, bool verbose); + static bool ExtractTar(const char* inFileName, const std::vector<cmStdString>& files, bool gzip, bool verbose); private: static bool s_ForceUnixPaths; static bool s_RunCommandHideConsole; |