diff options
Diffstat (limited to 'Source/CPack/cmCPackTarCompressGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackTarCompressGenerator.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackTarCompressGenerator.cxx b/Source/CPack/cmCPackTarCompressGenerator.cxx new file mode 100644 index 0000000..55a6de5 --- /dev/null +++ b/Source/CPack/cmCPackTarCompressGenerator.cxx @@ -0,0 +1,13 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#include "cmCPackTarCompressGenerator.h" + +#include "cmArchiveWrite.h" +#include "cmCPackArchiveGenerator.h" + +cmCPackTarCompressGenerator::cmCPackTarCompressGenerator() + : cmCPackArchiveGenerator(cmArchiveWrite::CompressCompress, "paxr") +{ +} + +cmCPackTarCompressGenerator::~cmCPackTarCompressGenerator() = default; |