2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2006-04-02 11:20:58 -04:00
|
|
|
#ifndef cmCPackZIPGenerator_h
|
|
|
|
#define cmCPackZIPGenerator_h
|
|
|
|
|
2016-09-07 00:21:35 +02:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2009-10-30 13:10:56 -04:00
|
|
|
#include "cmCPackArchiveGenerator.h"
|
2016-09-07 00:21:35 +02:00
|
|
|
#include "cmCPackGenerator.h"
|
|
|
|
#include "cmTypeMacro.h"
|
2006-04-02 11:20:58 -04:00
|
|
|
|
|
|
|
/** \class cmCPackZIPGenerator
|
|
|
|
* \brief A generator for ZIP files
|
|
|
|
*/
|
2009-10-30 13:10:56 -04:00
|
|
|
class cmCPackZIPGenerator : public cmCPackArchiveGenerator
|
2006-04-02 11:20:58 -04:00
|
|
|
{
|
|
|
|
public:
|
2009-10-30 13:10:56 -04:00
|
|
|
cmCPackTypeMacro(cmCPackZIPGenerator, cmCPackArchiveGenerator);
|
2006-04-02 11:20:58 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct generator
|
|
|
|
*/
|
|
|
|
cmCPackZIPGenerator();
|
2016-06-27 21:25:27 +02:00
|
|
|
~cmCPackZIPGenerator() CM_OVERRIDE;
|
2006-04-02 11:20:58 -04:00
|
|
|
|
|
|
|
protected:
|
2016-06-27 21:25:27 +02:00
|
|
|
const char* GetOutputExtension() CM_OVERRIDE { return ".zip"; }
|
2006-04-02 11:20:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|