30 lines
777 B
C++
30 lines
777 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmCPackCygwinBinaryGenerator_h
|
|
#define cmCPackCygwinBinaryGenerator_h
|
|
|
|
#include "cmCPackTarBZip2Generator.h"
|
|
|
|
/** \class cmCPackCygwinBinaryGenerator
|
|
* \brief A generator for TarBZip2 files
|
|
*/
|
|
class cmCPackCygwinBinaryGenerator : public cmCPackTarBZip2Generator
|
|
{
|
|
public:
|
|
cmCPackTypeMacro(cmCPackCygwinBinaryGenerator, cmCPackTarBZip2Generator);
|
|
|
|
/**
|
|
* Construct generator
|
|
*/
|
|
cmCPackCygwinBinaryGenerator();
|
|
virtual ~cmCPackCygwinBinaryGenerator();
|
|
|
|
protected:
|
|
virtual int InitializeInternal();
|
|
int PackageFiles();
|
|
virtual const char* GetOutputExtension();
|
|
std::string OutputExtension;
|
|
};
|
|
|
|
#endif
|