summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-29 17:19:13 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-12-29 17:19:13 (GMT)
commitabe4fd77fc0e85c1e6ffaa25941414c83b090ea7 (patch)
tree468f9103e85ab601b62d821a4323b8c3f7585bf2 /Source/cmSystemTools.h
parent64b5118c78e4e56a7967166b3df2e1bfe73fa36b (diff)
downloadCMake-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.h5
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;