Merge pull request #1329 from SpecLad:msvc-werror

pull/1324/merge
Roman Donchenko 11 years ago committed by OpenCV Buildbot
commit ceb522ad2f
  1. 4
      cmake/OpenCVCompilerOptions.cmake

@ -239,6 +239,10 @@ if(MSVC)
set(OPENCV_EXTRA_FLAGS "${OPENCV_EXTRA_FLAGS} /fp:fast") # !! important - be on the same wave with x64 compilers set(OPENCV_EXTRA_FLAGS "${OPENCV_EXTRA_FLAGS} /fp:fast") # !! important - be on the same wave with x64 compilers
endif() endif()
endif() endif()
if(OPENCV_WARNINGS_ARE_ERRORS)
set(OPENCV_EXTRA_FLAGS "${OPENCV_EXTRA_FLAGS} /WX")
endif()
endif() endif()
# Extra link libs if the user selects building static libs: # Extra link libs if the user selects building static libs:

Loading…
Cancel
Save