cmCPackTarCompressGenerator.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2000-2009 Kitware, Inc.
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmCPackTarCompressGenerator_h
  11. #define cmCPackTarCompressGenerator_h
  12. #include "cmCPackTGZGenerator.h"
  13. /** \class cmCPackTarCompressGenerator
  14. * \brief A generator for TarCompress files
  15. */
  16. class cmCPackTarCompressGenerator : public cmCPackArchiveGenerator
  17. {
  18. public:
  19. cmCPackTypeMacro(cmCPackTarCompressGenerator, cmCPackArchiveGenerator);
  20. /**
  21. * Construct generator
  22. */
  23. cmCPackTarCompressGenerator();
  24. virtual ~cmCPackTarCompressGenerator();
  25. protected:
  26. virtual const char* GetOutputExtension() { return ".tar.Z"; }
  27. };
  28. #endif