We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7badac0 commit 02d4b4eCopy full SHA for 02d4b4e
cmake/compilers.cmake
@@ -17,8 +17,10 @@ endif()
17
18
# --- compiler options
19
20
-if(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
+if(CMAKE_CXX_COMPILER_ID MATCHES "(Clang|Intel)")
21
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>")
24
endif()
25
26
if(CMAKE_Fortran_COMPILER_ID STREQUAL GNU)
@@ -30,7 +32,6 @@ add_compile_options(-Wall -Wextra
30
32
elseif(CMAKE_Fortran_COMPILER_ID MATCHES "^Intel")
31
33
add_compile_options(
34
"$<$<COMPILE_LANGUAGE:Fortran>:-warn>"
-"$<$<COMPILE_LANGUAGE:C,CXX>:-Wall;-Wextra>"
35
"$<$<AND:$<COMPILE_LANGUAGE:Fortran>,$<CONFIG:Debug,RelWithDebInfo>>:-traceback;-check;-debug>"
36
)
37
0 commit comments