mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
29 lines
764 B
C++
29 lines
764 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmCPackTarCompressGenerator_h
|
|
#define cmCPackTarCompressGenerator_h
|
|
|
|
#include "cmConfigure.h"
|
|
|
|
#include "cmCPackArchiveGenerator.h"
|
|
#include "cmCPackGenerator.h"
|
|
|
|
/** \class cmCPackTarCompressGenerator
|
|
* \brief A generator for TarCompress files
|
|
*/
|
|
class cmCPackTarCompressGenerator : public cmCPackArchiveGenerator
|
|
{
|
|
public:
|
|
cmCPackTypeMacro(cmCPackTarCompressGenerator, cmCPackArchiveGenerator);
|
|
/**
|
|
* Construct generator
|
|
*/
|
|
cmCPackTarCompressGenerator();
|
|
~cmCPackTarCompressGenerator() CM_OVERRIDE;
|
|
|
|
protected:
|
|
const char* GetOutputExtension() CM_OVERRIDE { return ".tar.Z"; }
|
|
};
|
|
|
|
#endif
|