diff options
author | Daan Leijen <daan@microsoft.com> | 2022-04-14 16:43:10 -0700 |
---|---|---|
committer | Daan Leijen <daan@microsoft.com> | 2022-04-14 16:43:10 -0700 |
commit | 45044da1013f5663b01e5f4a34fd47dfbfe4b6dc (patch) | |
tree | 68ca7a8ff2e4c62fc5aeab3ce9817240447b2a0e | |
parent | 85e89a33b1b5d07f77d6cf304868b0acb60c80f2 (diff) |
do not turn on C++ compilation on msvc by default
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b702300..a997aae 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() |