mirror of https://github.com/google/benchmark.git
enable the /MP MSVC compiler argument for parallel compilation (#1846)
This commit is contained in:
parent
986423a62d
commit
08fdf6eb84
|
@ -147,7 +147,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
# Turn compiler warnings up to 11
|
# Turn compiler warnings up to 11
|
||||||
string(REGEX REPLACE "[-/]W[1-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
string(REGEX REPLACE "[-/]W[1-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4 /MP")
|
||||||
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
||||||
|
|
||||||
if(BENCHMARK_ENABLE_WERROR)
|
if(BENCHMARK_ENABLE_WERROR)
|
||||||
|
|
Loading…
Reference in New Issue