From 45044da1013f5663b01e5f4a34fd47dfbfe4b6dc Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Thu, 14 Apr 2022 16:43:10 -0700 Subject: [PATCH] do not turn on C++ compilation on msvc by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7023009..a997aaee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -73,7 +73,7 @@ endif() # Process options # ----------------------------------------------------------------------------- -if(CMAKE_C_COMPILER_ID MATCHES "MSVC|Intel") +if(CMAKE_C_COMPILER_ID MATCHES "Intel") set(MI_USE_CXX "ON") endif()