Commit d402bac6 authored by Alexander Alekhin's avatar Alexander Alekhin

cmake: fix libpng build on MSVS2012

parent 4013ce57
......@@ -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()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment