Skip to content

Commit 02d4b4e

Browse files
committed
work with MSVC + oneAPI
1 parent 7badac0 commit 02d4b4e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

cmake/compilers.cmake

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ endif()
1717

1818
# --- compiler options
1919

20-
if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
20+
if(CMAKE_CXX_COMPILER_ID MATCHES "(Clang|Intel)")
2121
add_compile_options("$<$<COMPILE_LANGUAGE:C,CXX>:-Wall;-Wextra>")
22+
elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
23+
add_compile_options("$<$<COMPILE_LANGUAGE:C,CXX>:/W3>")
2224
endif()
2325

2426
if(CMAKE_Fortran_COMPILER_ID STREQUAL GNU)
@@ -30,7 +32,6 @@ add_compile_options(-Wall -Wextra
3032
elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^Intel")
3133
add_compile_options(
3234
"$<$<COMPILE_LANGUAGE:Fortran>:-warn>"
33-
"$<$<COMPILE_LANGUAGE:C,CXX>:-Wall;-Wextra>"
3435
"$<$<AND:$<COMPILE_LANGUAGE:Fortran>,$<CONFIG:Debug,RelWithDebInfo>>:-traceback;-check;-debug>"
3536
)
3637
endif()

0 commit comments

Comments
 (0)