mirror of https://git.tukaani.org/xz.git
CMake: Rename MICROLZMA_ENCODER/DECODER to XZ_MICROLZMA_ENCODER/DECODER
This commit is contained in:
parent
96f0a6632c
commit
2343992fcb
|
@ -934,13 +934,13 @@ endforeach()
|
|||
# MicroLZMA #
|
||||
#############
|
||||
|
||||
option(MICROLZMA_ENCODER
|
||||
option(XZ_MICROLZMA_ENCODER
|
||||
"MicroLZMA encoder (needed by specific applications only)" ON)
|
||||
|
||||
option(MICROLZMA_DECODER
|
||||
option(XZ_MICROLZMA_DECODER
|
||||
"MicroLZMA decoder (needed by specific applications only)" ON)
|
||||
|
||||
if(MICROLZMA_ENCODER)
|
||||
if(XZ_MICROLZMA_ENCODER)
|
||||
if(NOT "lzma1" IN_LIST ENCODERS)
|
||||
message(FATAL_ERROR "The LZMA1 encoder is required to support the "
|
||||
"MicroLZMA encoder")
|
||||
|
@ -949,7 +949,7 @@ if(MICROLZMA_ENCODER)
|
|||
target_sources(liblzma PRIVATE src/liblzma/common/microlzma_encoder.c)
|
||||
endif()
|
||||
|
||||
if(MICROLZMA_DECODER)
|
||||
if(XZ_MICROLZMA_DECODER)
|
||||
if(NOT "lzma1" IN_LIST DECODERS)
|
||||
message(FATAL_ERROR "The LZMA1 decoder is required to support the "
|
||||
"MicroLZMA decoder")
|
||||
|
|
|
@ -40,7 +40,7 @@ if(BUILD_TESTING)
|
|||
# test_microlzma will fail to compile because this configuration is
|
||||
# not possible in the Autotools build, so the test was not made to
|
||||
# support it since it would have required additional changes.
|
||||
if (MICROLZMA_ENCODER AND (MICROLZMA_DECODER
|
||||
if (XZ_MICROLZMA_ENCODER AND (XZ_MICROLZMA_DECODER
|
||||
OR NOT "lzma1" IN_LIST DECODERS))
|
||||
list(APPEND LIBLZMA_TESTS test_microlzma)
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue