cmCPackTarCompressGenerator.cxx 454 B

123456789101112131415
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #include "cmCPackTarCompressGenerator.h"
  4. #include "cmArchiveWrite.h"
  5. #include "cmCPackArchiveGenerator.h"
  6. cmCPackTarCompressGenerator::cmCPackTarCompressGenerator()
  7. : cmCPackArchiveGenerator(cmArchiveWrite::CompressCompress, "paxr")
  8. {
  9. }
  10. cmCPackTarCompressGenerator::~cmCPackTarCompressGenerator()
  11. {
  12. }