Fix: [Actions] Annotations not shown for MSVC (#9247)

pull/332/head
Loïc Guilloux 3 years ago committed by GitHub
parent 1dfc148613
commit c0a0d85d20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,8 +26,10 @@ macro(compile_flags)
add_compile_options(/Zc:rvalueCast)
if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# Enable multi-threaded compilation.
add_compile_options(/MP)
add_compile_options(
/MP # Enable multi-threaded compilation.
/FC # Display the full path of source code files passed to the compiler in diagnostics.
)
endif()
endif()

Loading…
Cancel
Save