Commit e8670d01 by nulltoken

cMakeList: Prevent MSVCR1x0.dll dependency

Deploys the libgit2/libgit2@9041250 fix to RELWITHDEBINFO
and MINSIZEREL build flavors

Fix #255
parent e6b013a0
......@@ -96,6 +96,8 @@ IF (MSVC)
ENDIF ()
SET(CMAKE_C_FLAGS_DEBUG "/Od /DEBUG /MTd /RTC1 /RTCs /RTCu")
SET(CMAKE_C_FLAGS_RELEASE "/MT /O2")
SET(CMAKE_C_FLAGS_RELWITHDEBINFO "/MT /O2")
SET(CMAKE_C_FLAGS_MINSIZEREL "/MT")
SET(WIN_RC "src/win32/git2.rc")
# Precompiled headers
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment