mirror of https://git.tukaani.org/xz.git
CMake: Require VS2015 or later for building xzdec.
xzdec might build with VS2013 but it hasn't been tested. It was never supported before and VS2013 is old anyway so for simplicity only liblzma is supported with VS2013.
This commit is contained in:
parent
daea64d158
commit
edd563daf0
|
@ -1035,7 +1035,7 @@ endif()
|
||||||
# xzdec
|
# xzdec
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
|
||||||
if(HAVE_DECODERS)
|
if(HAVE_DECODERS AND (NOT MSVC OR MSVC_VERSION GREATER_EQUAL 1900))
|
||||||
add_executable(xzdec
|
add_executable(xzdec
|
||||||
src/common/sysdefs.h
|
src/common/sysdefs.h
|
||||||
src/common/tuklib_common.h
|
src/common/tuklib_common.h
|
||||||
|
|
Loading…
Reference in New Issue