From ffea1d9c5877b2d355cf3f6f936962eabb50bbf2 Mon Sep 17 00:00:00 2001 From: Orsiris de Jong Date: Mon, 29 Jun 2020 20:12:47 +0200 Subject: [PATCH] Add zstd support and fix missing fatal error U1052: file '../../7zip.mak' not found Stop. --- CPP/7zip/Bundles/SFXSetup/makefile | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/CPP/7zip/Bundles/SFXSetup/makefile b/CPP/7zip/Bundles/SFXSetup/makefile index dd559990..24e32c2b 100644 --- a/CPP/7zip/Bundles/SFXSetup/makefile +++ b/CPP/7zip/Bundles/SFXSetup/makefile @@ -113,4 +113,25 @@ C_OBJS = \ !include "../../Crc.mak" !include "../../LzmaDec.mak" -!include "../../7zip.mak" \ No newline at end of file + + +COMPRESS_OBJS = $(COMPRESS_OBJS) \ + $O\ZstdDecoder.obj \ + $O\ZstdRegister.obj \ + +ZSTD_OBJS = \ + $O\debug.obj \ + $O\entropy_common.obj \ + $O\error_private.obj \ + $O\fse_decompress.obj \ + $O\huf_decompress.obj \ + $O\pool.obj \ + $O\threading.obj \ + $O\xxhash.obj \ + $O\zstd_common.obj \ + $O\zstd_ddict.obj \ + $O\zstd_decompress_block.obj \ + $O\zstd_decompress.obj \ + + +!include "../../7zip.mak"