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