mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
cmake: tar: Parse 'cmake -E tar' arguments
This commit is contained in:
committed by
Kyle Edwards
parent
51f3a76ab2
commit
ea9a2c1759
@@ -412,6 +412,14 @@ public:
|
||||
/** Setup the environment to enable VS 8 IDE output. */
|
||||
static void EnableVSConsoleOutput();
|
||||
|
||||
enum cmTarAction
|
||||
{
|
||||
TarActionCreate,
|
||||
TarActionList,
|
||||
TarActionExtract,
|
||||
TarActionNone
|
||||
};
|
||||
|
||||
/** Create tar */
|
||||
enum cmTarCompression
|
||||
{
|
||||
@@ -420,6 +428,7 @@ public:
|
||||
TarCompressXZ,
|
||||
TarCompressNone
|
||||
};
|
||||
|
||||
static bool ListTar(const char* outFileName, bool verbose);
|
||||
static bool CreateTar(const char* outFileName,
|
||||
const std::vector<std::string>& files,
|
||||
|
||||
Reference in New Issue
Block a user