From 781da8d6c44de6aa278c916375250668a0b107f2 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Wed, 9 Nov 2022 14:45:05 +0200 Subject: [PATCH] CMake: Add lzip decoder files and #define to the build. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd09d48f..e3af3bf6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,6 +110,7 @@ add_compile_definitions( HAVE_MF_BT4 HAVE_MF_HC3 HAVE_MF_HC4 + HAVE_LZIP_DECODER # Standard headers and types are available: HAVE_STDBOOL_H @@ -280,6 +281,8 @@ add_library(liblzma src/liblzma/common/index_encoder.c src/liblzma/common/index_encoder.h src/liblzma/common/index_hash.c + src/liblzma/common/lzip_decoder.c + src/liblzma/common/lzip_decoder.h src/liblzma/common/memcmplen.h src/liblzma/common/outqueue.c src/liblzma/common/outqueue.h