cmake: fix libpng build on MSVS2012

This commit is contained in:
Alexander Alekhin 2016-09-08 19:41:11 +03:00
parent 4013ce570f
commit d402bac69d

View File

@ -33,7 +33,8 @@ if(ENABLE_NEON)
add_definitions(-DPNG_ARM_NEON_OPT=2)
endif()
if(ENABLE_SSE)
if(ENABLE_SSE
AND (NOT MSVC OR (MSVC_VERSION GREATER 1799))) # MSVS2013+ (issue #7232)
list(APPEND lib_srcs contrib/intel/intel_init.c contrib/intel/filter_sse2_intrinsics.c)
add_definitions(-DPNG_INTEL_SSE)
endif()