From 6e23d6a2d7e918d18e20380f9ac2192a7aaa91c8 Mon Sep 17 00:00:00 2001 From: peizhilin Date: Mon, 19 Nov 2018 13:46:21 +0800 Subject: [PATCH] disable mkl on windows by default --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b42e60e1..d9b797f3d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -135,6 +135,8 @@ if (WIN32) "Disable AVX when compiling for Windows" FORCE) set(WITH_DSO OFF CACHE STRING "Disable DSO when compiling for Windows" FORCE) + set(WITH_MKL OFF CACHE STRING + "Disable MKL when compiling for Windows" FORCE) endif() set(THIRD_PARTY_PATH "${CMAKE_BINARY_DIR}/third_party" CACHE STRING -- GitLab