mirror of
https://github.com/curl/curl.git
synced 2026-08-04 08:59:58 +03:00
CMake: set MSVC warning level to 4
The MSVC warning level defaults to 3 in CMake. Change it to 4, which is consistent with the Visual Studio and NMake builds. Disable level 4 warning C4127 for the library and additionally C4306 for the test servers to get a clean CURL_WERROR build as that warning is raised in some macros in older Visual Studio versions. Ref: https://github.com/curl/curl/pull/1667#issuecomment-314082794 Closes https://github.com/curl/curl/pull/1711
This commit is contained in:
parent
70934885d0
commit
866e02935d
3 changed files with 10 additions and 0 deletions
|
|
@ -12,6 +12,7 @@ list(APPEND HHEADERS
|
|||
|
||||
if(MSVC)
|
||||
list(APPEND CSOURCES libcurl.rc)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4127")
|
||||
endif()
|
||||
|
||||
# SET(CSOURCES
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue