CMake/Source/CPack/cmCPackTGZGenerator.h

41 lines
1.1 KiB
C
Raw Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc.
2006-01-01 23:21:05 -05:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2006-01-01 23:21:05 -05:00
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
2006-01-01 23:21:05 -05:00
#ifndef cmCPackTGZGenerator_h
#define cmCPackTGZGenerator_h
2016-09-07 00:21:35 +02:00
#include <cmConfigure.h>
#include "cmCPackArchiveGenerator.h"
2016-09-07 00:21:35 +02:00
#include "cmCPackGenerator.h"
#include "cmTypeMacro.h"
2006-01-01 23:21:05 -05:00
/** \class cmCPackTGZGenerator
* \brief A generator for TGZ files
*
*/
class cmCPackTGZGenerator : public cmCPackArchiveGenerator
2006-01-01 23:21:05 -05:00
{
public:
cmCPackTypeMacro(cmCPackTGZGenerator, cmCPackArchiveGenerator);
2006-01-01 23:21:05 -05:00
/**
* Construct generator
*/
cmCPackTGZGenerator();
2016-06-27 21:25:27 +02:00
~cmCPackTGZGenerator() CM_OVERRIDE;
2006-01-01 23:21:05 -05:00
protected:
2016-06-27 21:25:27 +02:00
const char* GetOutputExtension() CM_OVERRIDE { return ".tar.gz"; }
2006-01-01 23:21:05 -05:00
};
#endif