cmake/Source/CPack/cmCPackTarCompressGenerator.h

29 lines
764 B
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmCPackTarCompressGenerator_h
#define cmCPackTarCompressGenerator_h
2016-10-30 18:24:19 +01:00
#include <cmConfigure.h>
#include "cmCPackArchiveGenerator.h"
#include "cmCPackGenerator.h"
/** \class cmCPackTarCompressGenerator
* \brief A generator for TarCompress files
*/
2010-06-23 01:18:35 +03:00
class cmCPackTarCompressGenerator : public cmCPackArchiveGenerator
{
public:
2010-06-23 01:18:35 +03:00
cmCPackTypeMacro(cmCPackTarCompressGenerator, cmCPackArchiveGenerator);
/**
* Construct generator
*/
cmCPackTarCompressGenerator();
2016-10-30 18:24:19 +01:00
~cmCPackTarCompressGenerator() CM_OVERRIDE;
protected:
2016-10-30 18:24:19 +01:00
const char* GetOutputExtension() CM_OVERRIDE { return ".tar.Z"; }
};
#endif