1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmCPackCygwinBinaryGenerator.h,v $
6 Date: $Date: 2007-10-31 12:50:17 $
7 Version: $Revision: 1.3 $
9 Copyright (c) 2002 Kitware, Inc. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
18 #ifndef cmCPackCygwinBinaryGenerator_h
19 #define cmCPackCygwinBinaryGenerator_h
21 #include "cmCPackTarBZip2Generator.h"
23 /** \class cmCPackCygwinBinaryGenerator
24 * \brief A generator for TarBZip2 files
26 class cmCPackCygwinBinaryGenerator
: public cmCPackTarBZip2Generator
29 cmCPackTypeMacro(cmCPackCygwinBinaryGenerator
, cmCPackTarBZip2Generator
);
34 cmCPackCygwinBinaryGenerator();
35 virtual ~cmCPackCygwinBinaryGenerator();
37 virtual int InitializeInternal();
38 int CompressFiles(const char* outFileName
, const char* toplevel
,
39 const std::vector
<std::string
>& files
);
40 virtual const char* GetOutputExtension();
41 std::string OutputExtension
;