Merge pull request #605 from benstraub/win-multi-cpu-compile

Adding multi-cpu compile option when generating MSVC projects.
This commit is contained in:
Russell Belfer 2012-03-20 22:25:49 -07:00
commit e71b78b02b

View File

@ -60,7 +60,7 @@ IF (MSVC)
# Not using __stdcall with the CRT causes problems
OPTION (STDCALL "Buildl libgit2 with the __stdcall convention" ON)
SET(CMAKE_C_FLAGS "/W4 /nologo /Zi ${CMAKE_C_FLAGS}")
SET(CMAKE_C_FLAGS "/W4 /MP /nologo /Zi ${CMAKE_C_FLAGS}")
IF (STDCALL)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /Gz")
ENDIF ()