mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 06:07:12 -06:00
Major changes, including Brotli and Lizard
- update of zstd-mt library - add brotli v0.6.0 - add lizard v2.0 - xxhash is from zstd for lz4, lz5 and lizard now - update also the documentation, where needed
This commit is contained in:
3
CPP/7zip/Bundles/Codec_lizard/StdAfx.cpp
Normal file
3
CPP/7zip/Bundles/Codec_lizard/StdAfx.cpp
Normal file
@@ -0,0 +1,3 @@
|
||||
// StdAfx.cpp
|
||||
|
||||
#include "StdAfx.h"
|
||||
8
CPP/7zip/Bundles/Codec_lizard/StdAfx.h
Normal file
8
CPP/7zip/Bundles/Codec_lizard/StdAfx.h
Normal file
@@ -0,0 +1,8 @@
|
||||
// StdAfx.h
|
||||
|
||||
#ifndef __STDAFX_H
|
||||
#define __STDAFX_H
|
||||
|
||||
#include "../../../Common/Common.h"
|
||||
|
||||
#endif
|
||||
43
CPP/7zip/Bundles/Codec_lizard/makefile
Normal file
43
CPP/7zip/Bundles/Codec_lizard/makefile
Normal file
@@ -0,0 +1,43 @@
|
||||
PROG = lizard.dll
|
||||
DEF_FILE = ../../Compress/Codec.def
|
||||
CFLAGS = $(CFLAGS) -DNEED_7ZIP_GUID
|
||||
|
||||
7ZIP_COMMON_OBJS = \
|
||||
$O\StreamUtils.obj \
|
||||
|
||||
WIN_OBJS = \
|
||||
$O\System.obj \
|
||||
|
||||
COMPRESS_OBJS = \
|
||||
$O\CodecExports.obj \
|
||||
$O\DllExportsCompress.obj \
|
||||
|
||||
C_OBJS = \
|
||||
$O\Alloc.obj \
|
||||
$O\Threads.obj \
|
||||
|
||||
COMPRESS_OBJS = $(COMPRESS_OBJS) \
|
||||
$O\LizardDecoder.obj \
|
||||
$O\LizardEncoder.obj \
|
||||
$O\LizardRegister.obj \
|
||||
|
||||
LIZARD_OBJS = \
|
||||
$O/liz_entropy_common.obj \
|
||||
$O/liz_fse_compress.obj \
|
||||
$O/liz_fse_decompress.obj \
|
||||
$O/liz_huf_compress.obj \
|
||||
$O/liz_huf_decompress.obj \
|
||||
$O/liz_lz5_compress.obj \
|
||||
$O/liz_lz5_decompress.obj \
|
||||
$O/liz_lz5frame.obj \
|
||||
|
||||
ZSTD_OBJS = \
|
||||
$O\xxhash.obj \
|
||||
|
||||
ZSTDMT_OBJS = \
|
||||
$O\threading.obj \
|
||||
$O\lizard-mt_common.obj \
|
||||
$O\lizard-mt_compress.obj \
|
||||
$O\lizard-mt_decompress.obj \
|
||||
|
||||
!include "../../7zip.mak"
|
||||
6
CPP/7zip/Bundles/Codec_lizard/resource.rc
Normal file
6
CPP/7zip/Bundles/Codec_lizard/resource.rc
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "../../../../C/7zVersionTr.h"
|
||||
#include "../../../../C/7zVersion.rc"
|
||||
|
||||
MY_VERSION_INFO_DLL("7z LZ5 Plugin", "lz5")
|
||||
|
||||
101 ICON "../../Archive/Icons/7z.ico"
|
||||
Reference in New Issue
Block a user