Merge pull request #1476 from avikde/cmakelists_default_sse_off

Removed default ON for USE_MSVC_SSE (warning on recent 64 bit windows)
This commit is contained in:
erwincoumans
2017-12-14 11:30:27 -08:00
committed by GitHub

View File

@@ -108,7 +108,7 @@ IF(MSVC)
IF (CMAKE_CL_64)
ADD_DEFINITIONS(-D_WIN64)
ELSE()
OPTION(USE_MSVC_SSE "Use MSVC /arch:sse option" ON)
OPTION(USE_MSVC_SSE "Use MSVC /arch:sse option" OFF)
option(USE_MSVC_SSE2 "Compile your program with SSE2 instructions" ON)
IF (USE_MSVC_SSE)