summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-03-21 23:36:00 +0800
committerJia Tan <jiat0218@gmail.com>2023-04-25 20:18:00 +0800
commit622d0fdc02d5f565c2872d79bc70c669c95c8284 (patch)
treece23f168fe33551d681b7287fd9ce09e0c90f970
parent3e2dc523c596cd770a6a7c58cacc0d0d8761e853 (diff)
downloadxz-622d0fdc02d5f565c2872d79bc70c669c95c8284.tar.gz
CMake: Conditionally build xz list.* files if decoders are enabled.
-rw-r--r--CMakeLists.txt9
1 files changed, 7 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index db42956..b4a9e5d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -958,8 +958,6 @@ if(NOT MSVC AND HAVE_GETOPT_LONG)
src/xz/file_io.h
src/xz/hardware.c
src/xz/hardware.h
- src/xz/list.c
- src/xz/list.h
src/xz/main.c
src/xz/main.h
src/xz/message.c
@@ -982,6 +980,13 @@ if(NOT MSVC AND HAVE_GETOPT_LONG)
src/liblzma/api
)
+ if(HAVE_DECODERS)
+ target_sources(xz PRIVATE
+ src/xz/list.c
+ src/xz/list.h
+ )
+ endif()
+
target_link_libraries(xz PRIVATE liblzma)
target_compile_definitions(xz PRIVATE ASSUME_RAM=128)