From df80c6d7f1491fdecffe1f1d2fd4fc3d199b0638 Mon Sep 17 00:00:00 2001 From: Avik De Date: Tue, 12 Dec 2017 09:34:06 -0500 Subject: [PATCH] Removed default ON for USE_MSVC_SSE (warning on recent 64 bit windows) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8664ec33..feadf83f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)