blob: 86ab3e210fc0f3f240ac075d8a1396276818b899 [file] [log] [blame]
/*=========================================================================
Program: CMake - Cross-Platform Makefile Generator
Module: $RCSfile$
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) 2002 Kitware, Inc. All rights reserved.
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef cmCPackDebGenerator_h
#define cmCPackDebGenerator_h
#include "cmCPackGenerator.h"
/** \class cmCPackDebGenerator
* \brief A generator for Debian packages
*
*/
class cmCPackDebGenerator : public cmCPackGenerator
{
public:
cmCPackTypeMacro(cmCPackDebGenerator, cmCPackGenerator);
/**
* Construct generator
*/
cmCPackDebGenerator();
virtual ~cmCPackDebGenerator();
protected:
virtual int InitializeInternal();
virtual int CompressFiles(const char* outFileName, const char* toplevel,
const std::vector<std::string>& files);
virtual const char* GetOutputExtension() { return ".deb"; }
};
#endif