[7zip] Resolve issue #12898 (#12899)

Co-authored-by: Nathan Mercer <nmercer@intermap.com>
This commit is contained in:
Nathan 2020-08-18 17:40:09 -06:00 committed by GitHub
parent b4e4854b87
commit 0e60bcd44f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -108,6 +108,7 @@ set(SRC_C
C/Lzma2Enc.c C/Lzma2Enc.c
C/LzmaDec.c C/LzmaDec.c
C/LzmaEnc.c C/LzmaEnc.c
C/LzmaLib.c
C/MtCoder.c C/MtCoder.c
C/MtDec.c C/MtDec.c
C/Ppmd7.c C/Ppmd7.c
@ -311,6 +312,7 @@ add_library(7zip
${SRC_CRYPTO} ${SRC_CRYPTO}
${SRC_C} ${SRC_C}
CPP/7zip/Archive/Archive2.def CPP/7zip/Archive/Archive2.def
C/Util/LzmaLib/LzmaLib.def
) )
target_compile_definitions(7zip target_compile_definitions(7zip
@ -334,6 +336,14 @@ target_include_directories(7zip
set(PUBLIC_HEADERS set(PUBLIC_HEADERS
C/7zTypes.h C/7zTypes.h
C/Alloc.h
C/LzFind.h
C/LzFindMt.h
C/LzHash.h
C/LzmaDec.h
C/LzmaEnc.h
C/LzmaLib.h
C/Threads.h
CPP/7zip/Archive/IArchive.h CPP/7zip/Archive/IArchive.h
CPP/7zip/ICoder.h CPP/7zip/ICoder.h
CPP/7zip/IDecl.h CPP/7zip/IDecl.h

View File

@ -1,3 +1,4 @@
Source: 7zip Source: 7zip
Version: 19.00 Version: 19.00
Port-Version: 1
Description: Library for archiving file with a high compression ratio. Description: Library for archiving file with a high compression ratio.